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
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user