Merge pull request #174 from SELab-2/fix/docker

fix(backend): Juiste Docker `.env`
This commit is contained in:
Tibo De Peuter 2025-04-07 10:51:48 +02:00 committed by GitHub
commit 5701e4b376
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 3 deletions

View file

@ -44,7 +44,6 @@ RUN npm install --silent --only=production
COPY ./docs ./docs COPY ./docs ./docs
COPY ./backend/i18n ./backend/i18n COPY ./backend/i18n ./backend/i18n
COPY ./backend/.env ./backend/.env
EXPOSE 3000 EXPOSE 3000

View file

@ -24,7 +24,7 @@ services:
restart: unless-stopped restart: unless-stopped
volumes: volumes:
# TODO Replace with environment keys # TODO Replace with environment keys
- ./backend/.env:/app/.env - ./backend/.env:/app/dwengo/backend/.env
depends_on: depends_on:
- db - db
- logging - logging

View file

@ -24,7 +24,7 @@ services:
- '3000:3000/tcp' - '3000:3000/tcp'
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- ./backend/.env.staging:/app/.env - ./backend/.env.staging:/app/dwengo/backend/.env
depends_on: depends_on:
- db - db
- logging - logging