17 lines
315 B
YAML
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
|