Files
DDDMicroFrontend/docker/nginx/docker-compose.yml
2025-09-30 10:00:10 +08:00

17 lines
293 B
YAML

version: '3.8'
services:
nginx-proxy:
image: nginx:latest
container_name: nginx-proxy
ports:
- "80:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
restart: unless-stopped
networks:
- proxy-network
networks:
proxy-network:
driver: bridge