Fix env_file path to use ./app/.env instead of root .env
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user