thp-lang.org/docker-compose.yml
2024-11-23 16:45:31 -05:00

23 lines
658 B
YAML

services:
thp:
image: nginx:alpine
restart: unless-stopped
container_name: thp-lang
volumes:
- /var/www/thp-lang.org/:/usr/share/nginx/html
labels:
- "traefik.enable=true"
- "traefik.http.routers.thp.rule=Host(`thp-lang.org`)"
- "traefik.http.routers.thp.entrypoints=websecure"
- "traefik.http.routers.thp.tls=true"
- "traefik.http.routers.thp.tls.certresolver=hetzner-resolver"
- "traefik.http.routers.thp.tls.domains[0].main=thp-lang.org"
- "traefik.http.routers.thp.tls.domains[0].sans=*.thp-lang.org"
networks:
- proxy
networks:
proxy:
name: proxy
external: true