forked from mirrors/bookwyrm
oh apparently I DID need to explicitly name .env
This commit is contained in:
parent
b8040cd0dc
commit
cae7bbf834
1 changed files with 3 additions and 0 deletions
|
@ -15,6 +15,7 @@ services:
|
||||||
- media_volume:/app/images
|
- media_volume:/app/images
|
||||||
db:
|
db:
|
||||||
image: postgres
|
image: postgres
|
||||||
|
env_file: .env
|
||||||
volumes:
|
volumes:
|
||||||
- pgdata:/var/lib/postgresql/data
|
- pgdata:/var/lib/postgresql/data
|
||||||
networks:
|
networks:
|
||||||
|
@ -35,12 +36,14 @@ services:
|
||||||
- 8000:8000
|
- 8000:8000
|
||||||
redis:
|
redis:
|
||||||
image: redis
|
image: redis
|
||||||
|
env_file: .env
|
||||||
ports:
|
ports:
|
||||||
- 6379:6379
|
- 6379:6379
|
||||||
networks:
|
networks:
|
||||||
- main
|
- main
|
||||||
restart: on-failure
|
restart: on-failure
|
||||||
celery_worker:
|
celery_worker:
|
||||||
|
env_file: .env
|
||||||
build: .
|
build: .
|
||||||
networks:
|
networks:
|
||||||
- main
|
- main
|
||||||
|
|
Loading…
Reference in a new issue