pleshevski.ru/docker-compose.yml
Dmitriy Pleshevskiy e719f5f8ee
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci: move to new traefik network
2023-03-11 09:12:19 +03:00

28 lines
789 B
YAML

version: "3.9"
networks:
traefik_public:
external: true
services:
site:
image: $PLESHEVSKI_IMAGE
networks:
- traefik_public
deploy:
replicas: 1
endpoint_mode: vip
update_config:
order: start-first
rollback_config:
order: start-first
labels:
- traefik.enable=true
- traefik.network=traefik_public
- traefik.constraint-label=magenta_public
- traefik.http.routers.to_pleshevski_site.rule=Host(`pleshevski.ru`)
- traefik.http.routers.to_pleshevski_site.entrypoints=https
- traefik.http.routers.to_pleshevski_site.tls=true
- traefik.http.routers.to_pleshevski_site.tls.certresolver=le
- traefik.http.services.pleshevski_site.loadbalancer.server.port=33334