Files
docker-nginx/docker-compose.yml
zino fb022a345e m
2023-12-05 18:53:10 +01:00

27 lines
666 B
YAML

version: '3.8'
services:
nginx:
image: nginx:latest
container_name: nginx
restart: unless-stopped
networks:
- web
environment:
- TZ=Europe/Berlin
ports:
- 80:80
- 443:443
volumes:
- ./volumes/conf.d:/etc/nginx/conf.d
- ./volumes/snippets:/etc/nginx/snippets
- ./volumes/html:/usr/share/nginx/html
- ./volumes/nginx.conf:/etc/nginx/nginx.conf
- ./volumes/logs:/var/log/nginx
- /etc/letsencrypt:/etc/letsencrypt
- /opt/docker/docker-wordpress-4netplayers/volumes/wordpress:/usr/share/nginx/html/4netplayers.zinomedia.de
networks:
web:
external: false
name: web