From a92a9039538f5e6f29da1f59befea7fbcdcdf778 Mon Sep 17 00:00:00 2001 From: Stiftung Development Date: Wed, 10 Sep 2025 22:44:30 +0200 Subject: [PATCH] Fix env_file path to use ./app/.env instead of root .env --- compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compose.yml b/compose.yml index b29a585..a3891cd 100644 --- a/compose.yml +++ b/compose.yml @@ -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