Add SSL=true to docker-compose.yml

This commit is contained in:
Mikołaj Pich 2022-08-27 16:39:16 +02:00
parent 844765e769
commit 63ff665a82
2 changed files with 3 additions and 1 deletions

View file

@ -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

View file

@ -2,5 +2,7 @@ version: "3.3"
services: services:
web: web:
build: . build: .
environment:
- SSL=true
ports: ports:
- "80:3000" - "80:3000"