Hello
I try to set this flag allowEmptyServices, but it don't seem to be working as expected
traefik.yaml :
providers:
providersThrottleDuration: 2s
swarm:
watch: true
exposedByDefault: false
network: front-net
allowEmptyServices: true
docker:
watch: true
exposedByDefault: false
network: front-net
allowEmptyServices: true
And my compose :
services:
whoami:
image: containous/whoami:v1.5.0
deploy:
replicas: 0
labels:
- traefik.enable=true
- "traefik.http.routers.whoami.entrypoints=http"
- traefik.http.routers.whoami.rule=Host(`ttt.docker.internal.lan`)
- "traefik.http.services.whoami.loadbalancer.server.port=80"
networks:
- front-net
networks:
front-net:
external: true
and if I go on ttt.docker.internal.lan I get 404 not found if I put replicas: 0