newsreader/docker-compose.production.yml
Sonny Bakker 6a46dc01e2 Remove variable defaults
These are not set whenever a merged compose file is used
2023-06-27 10:11:07 +02:00

17 lines
315 B
YAML

version: "3.6"
volumes:
logs:
services:
nginx:
image: nginx:1.23
depends_on:
django:
condition: service_healthy
ports:
- "${NGINX_HTTP_PORT:-80}:80"
- "${NGINX_HTTPS_PORT:-443}:443"
volumes:
- ./config/nginx/conf.d:/etc/nginx/conf.d
- logs:/var/log/nginx