2024-12-16 03:00:13 +00:00
|
|
|
services:
|
|
|
|
dev_araozu_combi:
|
|
|
|
image: nginx:alpine
|
|
|
|
restart: unless-stopped
|
|
|
|
container_name: dev_araozu_combi
|
|
|
|
volumes:
|
2024-12-16 03:01:51 +00:00
|
|
|
- /var/www/dev.araozu.combi/:/usr/share/nginx/html
|
2024-12-16 03:00:13 +00:00
|
|
|
labels:
|
|
|
|
- "traefik.enable=true"
|
|
|
|
- "traefik.http.routers.dev_araozu_combi.rule=Host(`combi.araozu.dev`)"
|
|
|
|
- "traefik.http.routers.dev_araozu_combi.entrypoints=websecure"
|
|
|
|
- "traefik.http.routers.dev_araozu_combi.tls=true"
|
|
|
|
- "traefik.http.routers.dev_araozu_combi.tls.certresolver=hetzner-resolver"
|
|
|
|
- "traefik.http.routers.dev_araozu_combi.tls.domains[0].main=araozu.dev"
|
|
|
|
- "traefik.http.routers.dev_araozu_combi.tls.domains[0].sans=*.araozu.dev"
|
|
|
|
networks:
|
|
|
|
- proxy
|
|
|
|
|
|
|
|
networks:
|
|
|
|
proxy:
|
|
|
|
name: proxy
|
|
|
|
external: true
|
|
|
|
|
|
|
|
|