oh apparently I DID need to explicitly name .env

This commit is contained in:
Mouse Reeve 2020-10-16 13:20:12 -07:00
parent b8040cd0dc
commit cae7bbf834

View file

@ -15,6 +15,7 @@ services:
- media_volume:/app/images
db:
image: postgres
env_file: .env
volumes:
- pgdata:/var/lib/postgresql/data
networks:
@ -35,12 +36,14 @@ services:
- 8000:8000
redis:
image: redis
env_file: .env
ports:
- 6379:6379
networks:
- main
restart: on-failure
celery_worker:
env_file: .env
build: .
networks:
- main