fix(docker-compose): mixed up prod and dev

This commit is contained in:
Stan Girard 2023-12-05 00:26:06 +01:00
parent b228bc0e80
commit 475f8ddf42
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ services:
- .env - .env
build: build:
context: backend context: backend
dockerfile: Dockerfile dockerfile: Dockerfile.dev
args: args:
- DEV_MODE=true - DEV_MODE=true
container_name: backend-core container_name: backend-core

View File

@ -29,7 +29,7 @@ services:
- .env - .env
build: build:
context: backend context: backend
dockerfile: Dockerfile.dev dockerfile: Dockerfile
container_name: backend-core container_name: backend-core
healthcheck: healthcheck:
test: [ "CMD", "curl", "http://localhost:5050/healthz" ] test: [ "CMD", "curl", "http://localhost:5050/healthz" ]