xbazzi e7ba86f10a
All checks were successful
Simple Mirror to GitHub / mirror (push) Successful in 35s
Feat: add scylladb + a bunch of stuff I forgot to commit earlier
2025-08-21 23:43:52 -06:00

26 lines
837 B
YAML

services:
whoami:
image: traefik/whoami
networks:
- traefik_proxy
deploy:
labels:
# Enable Service discovery for Traefik
- "traefik.enable=true"
# Define the WHoami router rule
- "traefik.http.routers.whoami.rule=Host(`whoami.lan.xbazzi.com`)"
# Expose Whoami on the HTTPS entrypoint
- "traefik.http.routers.whoami.entrypoints=websecure"
# - "traefik.http.routers.whoami.entrypoints=web"
# Enable TLS
- "traefik.http.routers.whoami.tls=true"
# - "traefik.http.routers.whoami.tls=false"
# Expose the whoami port number to Traefik
- "traefik.http.services.whoami.loadbalancer.server.port=80"
placement:
constraints:
- node.role != manager
networks:
traefik_traefik_proxy:
external: true