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
|
RUN mkdir /fake-log
|
||||||
WORKDIR /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 ./
|
COPY package.json package-lock.json ./
|
||||||
RUN npm install
|
RUN npm install
|
||||||
|
|
|
@ -2,5 +2,7 @@ version: "3.3"
|
||||||
services:
|
services:
|
||||||
web:
|
web:
|
||||||
build: .
|
build: .
|
||||||
|
environment:
|
||||||
|
- SSL=true
|
||||||
ports:
|
ports:
|
||||||
- "80:3000"
|
- "80:3000"
|
||||||
|
|
Loading…
Reference in a new issue