mirror of
https://github.com/vhaudiquet/homeprod.git
synced 2025-12-19 04:26:04 +00:00
Bumps traefik from 3.5 to 3.6. --- updated-dependencies: - dependency-name: traefik dependency-version: '3.6' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
652 B
YAML
27 lines
652 B
YAML
services:
|
|
traefik:
|
|
image: traefik:3.6
|
|
command:
|
|
- "--configFile=/etc/traefik/traefik.yml"
|
|
ports:
|
|
- target: 80
|
|
published: 80
|
|
mode: host
|
|
- "8080"
|
|
networks:
|
|
- default
|
|
- proxy
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- type: bind
|
|
source: /root/homeprod/docker/infrastructure/network/traefik/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
|