Add Proxy_Containers/traefik/compose.yaml

This commit is contained in:
2026-02-07 17:50:36 +00:00
parent f9cb4b6a53
commit 608de0a43d
+20
View File
@@ -0,0 +1,20 @@
services:
traefik:
image: traefik:latest
container_name: traefik
command:
- "--api.insecure=true"
- "--providers.docker=true"
#- "--entrypoints.web.address=:80"
ports:
- "80:80"
- "8079:8080"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
networks:
- traefik
restart: unless-stopped
networks:
traefik:
driver: bridge