Files
Docker-Compose/Proxy_Containers/traefik/compose.yaml
T

20 lines
400 B
YAML
Raw Normal View History

2026-02-07 17:50:36 +00:00
services:
traefik:
image: traefik:latest
container_name: traefik
command:
- "--providers.docker=true"
ports:
- "80:80"
- "443:443"
2026-02-07 17:50:36 +00:00
- "8079:8080"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./traefik.yaml:/etc/traefik/traefik.yaml:ro
2026-02-07 17:50:36 +00:00
networks:
- traefik
restart: unless-stopped
networks:
traefik:
driver: bridge