Files
Marketplace/compose-files/nginx/docker-compose.yml
2025-11-21 10:54:46 +05:30

15 lines
342 B
YAML

# nginx service
# Image: nginx:latest
services:
nginx:
image: nginx:latest
container_name: nginx
restart: unless-stopped
ports:
- "${NGINX_PORT:-80}:80" # HTTP port
volumes:
- ./config:/etc/nginx/conf.d # Nginx configuration
environment:
- NGINX_HOST=${NGINX_HOST}
- NGINX_PORT=${NGINX_PORT}