czsk/docker-compose.yml
Sergei Poljanski f5ad587f74
All checks were successful
Build and Deploy to Production / build (push) Successful in 7s
Build and Deploy to Production / deploy (push) Successful in 20s
cleanup + www
2025-11-25 05:39:20 +02:00

20 lines
632 B
YAML

services:
czsk:
# Image will be dynamically updated during deployment
# Format: registry.example.com/user/czsk:sha_tag
image: nginx:alpine
container_name: czsk
restart: unless-stopped
networks:
- traefik
labels:
- "traefik.enable=true"
- "traefik.http.routers.czsk.rule=Host(`czsk.it`) || Host(`www.czsk.it`)"
- "traefik.http.routers.czsk.entrypoints=websecure"
- "traefik.http.routers.czsk.tls=true"
- "traefik.http.routers.czsk.tls.certresolver=letsencrypt"
- "traefik.http.services.czsk.loadbalancer.server.port=80"
networks:
traefik:
external: true