production/docker/catmario/docker-compose.yml

22 lines
582 B
YAML
Raw Normal View History

2024-06-13 16:15:29 +00:00
services:
catmario:
2024-10-16 06:42:54 +00:00
image: nginx:1.26.2
2024-06-13 16:15:29 +00:00
networks:
- default
- traefik
labels:
- traefik.enable=true
2024-06-14 11:03:43 +00:00
- traefik.http.routers.R6.rule=Host(`catmario.yuuk1.uk`)
- traefik.http.routers.R6.entryPoints=websecure
- traefik.http.routers.R6.tls=true
- traefik.http.routers.R6.tls.certResolver=letsencrypt
- traefik.http.routers.R6.service=S6
- traefik.http.services.S6.loadbalancer.server.port=80
2024-06-13 16:15:29 +00:00
volumes:
- ../../repo/catmario/docs:/usr/share/nginx/html
networks:
traefik:
external: true
name: traefik