infrastructure/ansible/plays/services/linktree/docker-compose.yaml
Tobias Manske c71f41230f
All checks were successful
continuous-integration/drone/push Build is passing
Traefik define routing networks
2024-01-22 18:56:36 +01:00

15 lines
455 B
YAML

---
version: "3.4"
services:
unruhig.eu:
image: registry.tobiasmanske.de/unruhig.eu:latest
labels:
- "traefik.enable=true"
- "traefik.docker.network=${COMPOSE_PROJECT_NAME}_default"
- "traefik.http.routers.unruhigeu.rule=(Host(`unruhig.eu`) || Host(`www.unruhig.eu`))"
- "traefik.http.routers.unruhigeu.entryPoints=websecure"
- "traefik.http.services.unruhigeu.loadbalancer.server.port=80"
restart: always
...