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
redis:
condition: service_started
env_file: .env
env_file: ./app/.env
ports:
- "8081:8000"
volumes:
@@ -32,7 +32,7 @@ services:
worker:
build: ./app
env_file: .env
env_file: ./app/.env
depends_on:
- redis
- db
@@ -40,7 +40,7 @@ services:
beat:
build: ./app
env_file: .env
env_file: ./app/.env
depends_on:
- redis
- db