Files
Website/docker-compose.yml
2025-06-01 03:35:36 +02:00

11 lines
264 B
YAML

version: '3.8'
services:
nginx:
image: nginx:alpine
container_name: website-nginx
network_mode: host
volumes:
- /opt/docker/Website:/usr/share/nginx/html:ro
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
restart: unless-stopped