Files
homeprod/docker/infrastructure/network/traefik/docker-compose.yml
vhaudiquet 48f9947bb8 Fixup commits:
- Changed domain from .local to .lan
- Added ha-linky, auto dependabot updates
2025-08-27 12:07:49 +02:00

25 lines
566 B
YAML

services:
traefik:
image: traefik:3.5
command:
- "--configFile=/etc/traefik/traefik.yml"
ports:
- "80:80"
- "8080:8080"
networks:
- default
- proxy
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- type: bind
source: /root/traefik.yml
target: /etc/traefik/traefik.yml
labels:
- "traefik.enable=true"
- "traefik.http.routers.traefik.rule=Host(`traefik.lan`)"
- "traefik.http.services.traefik.loadbalancer.server.port=8080"
networks:
proxy:
name: proxy