newsreader/docker-compose.production.yml

29 lines
549 B
YAML

version: "3.6"
volumes:
logs:
static-files:
services:
db:
env_file: ./.production.env
celery:
env_file: ./.production.env
django:
env_file: ./.production.env
nginx:
image: nginx:1.23
depends_on:
django:
condition: service_healthy
env_file: ./.production.env
ports:
# Note that --env-file should be used to set these correctly
- "${NGINX_HTTP_PORT:-80}:80"
volumes:
- ./config/nginx/conf.d:/etc/nginx/conf.d
- logs:/var/log/nginx
- static-files:/app/static