Fix env_file path to use ./app/.env instead of root .env

This commit is contained in:
Stiftung Development
2025-09-10 22:44:30 +02:00
parent e62d898746
commit a92a903953

View File

@@ -23,7 +23,7 @@ services:
condition: service_healthy condition: service_healthy
redis: redis:
condition: service_started condition: service_started
env_file: .env env_file: ./app/.env
ports: ports:
- "8081:8000" - "8081:8000"
volumes: volumes:
@@ -32,7 +32,7 @@ services:
worker: worker:
build: ./app build: ./app
env_file: .env env_file: ./app/.env
depends_on: depends_on:
- redis - redis
- db - db
@@ -40,7 +40,7 @@ services:
beat: beat:
build: ./app build: ./app
env_file: .env env_file: ./app/.env
depends_on: depends_on:
- redis - redis
- db - db