services: traefik: image: traefik:v3.6 container_name: traefik restart: unless-stopped command: - --api.insecure=true - --providers.docker=true - --entrypoints.web.address=:80 - --api.dashboard=true - --log.level=INFO ports: - "80:80" - "8080:8080" volumes: - /var/run/docker.sock:/var/run/docker.sock:ro networks: - homelab_net networks: homelab_net: external: true