first commit

This commit is contained in:
2024-06-03 18:43:35 +02:00
parent 2da01a3f6e
commit f501d519af
883 changed files with 71550 additions and 2 deletions

View File

@ -0,0 +1,27 @@
version: '3'
services:
web:
image: nginx
container_name: ${webServName}
restart: ${restartPolicy}
# ports:
# - 8080:80
networks:
- webNet
volumes:
- html:/usr/share/nginx/html/
- config:/etc/nginx/
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
labels:
- "traefik.enable=true"
- "traefik.http.routers.web.rule=Host(`${domain}`,`www.${domain}`)"
volumes:
html:
config:
networks:
webNet:
external: true
name: webNet