mirror of
https://github.com/vhaudiquet/homeprod.git
synced 2025-12-18 12:06:05 +00:00
25 lines
569 B
YAML
25 lines
569 B
YAML
services:
|
|
traefik:
|
|
image: traefik:v3.2
|
|
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
|