In the labels dynamic reference I can see this:
- "traefik.http.services.service01.loadbalancer.server.port=foobar"
- "traefik.http.services.service01.loadbalancer.server.scheme=foobar"
But in the file dynamic reference you can set the services.$SERVICE.loadbalancer.servers.url
services:
Service01:
loadBalancer:
sticky:
cookie:
name: foobar
secure: true
httpOnly: true
sameSite: foobar
servers:
- url: foobar
- url: foobar
Why isn't this available in the Docker labels config? I'd like to be able to route to internal private IPs and not need a docker file. In other words, why is file
the only option here?