Dmitriy Pleshevskiy
9eb5715baf
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
27 lines
781 B
YAML
27 lines
781 B
YAML
version: "3.9"
|
|
|
|
networks:
|
|
rp_public:
|
|
external: true
|
|
|
|
services:
|
|
site:
|
|
image: $PLESHEVSKI_IMAGE
|
|
networks:
|
|
- rp_public
|
|
deploy:
|
|
replicas: 1
|
|
endpoint_mode: vip
|
|
update_config:
|
|
order: start-first
|
|
rollback_config:
|
|
order: start-first
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.docker.network=rp_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
|