Skip to content

Commit

Permalink
fix env file location
Browse files Browse the repository at this point in the history
  • Loading branch information
robinpdev committed Mar 2, 2024
1 parent ad54129 commit 91ef19e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
- POSTGRES_PASSWORD=${SQL_PASSWORD}
- POSTGRES_DB=${SQL_DATABASE}
env_file:
- .env.prod
- ${ENV_LOCATION}

backend:
container_name: pigeonhole-backend
Expand All @@ -25,7 +25,7 @@ services:
expose:
- 8000
env_file:
- .env.prod
- ${ENV_LOCATION}
depends_on:
- database
restart: always
Expand Down Expand Up @@ -66,7 +66,7 @@ services:
depends_on:
- backend
env_file:
- .env.prod
- ${ENV_LOCATION}
labels:
- "traefik.enable=true"
- "traefik.http.routers.frontend.rule=Host(`sel2-1.ugent.be`)"
Expand Down

0 comments on commit 91ef19e

Please sign in to comment.