Add SSL=true to docker-compose.yml
This commit is contained in:
parent
844765e769
commit
63ff665a82
2 changed files with 3 additions and 1 deletions
|
@ -3,7 +3,7 @@ FROM node:18-alpine
|
|||
RUN mkdir /fake-log
|
||||
WORKDIR /fake-log
|
||||
|
||||
RUN apk add --no-cache git python3 make g++
|
||||
RUN apk add --no-cache git
|
||||
|
||||
COPY package.json package-lock.json ./
|
||||
RUN npm install
|
||||
|
|
|
@ -2,5 +2,7 @@ version: "3.3"
|
|||
services:
|
||||
web:
|
||||
build: .
|
||||
environment:
|
||||
- SSL=true
|
||||
ports:
|
||||
- "80:3000"
|
||||
|
|
Loading…
Reference in a new issue