Files
homeprod/docker/infrastructure/network/traefik/docker-compose.yml
dependabot[bot] 47d94471b6 build(deps): bump traefik in /docker/infrastructure/network/traefik
Bumps traefik from v3.2 to 3.4.

---
updated-dependencies:
- dependency-name: traefik
  dependency-version: '3.4'
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-06-05 10:19:41 +00:00

25 lines
568 B
YAML

services:
traefik:
image: traefik:3.4
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.local`)"
- "traefik.http.services.traefik.loadbalancer.server.port=8080"
networks:
proxy:
name: proxy