I can configure a service with the file provider like so:
http:
services:
example:
loadBalancer:
serversTransport: insecureTransport@file
servers:
- url: "https://example.com/"
I'm running Traefik on ECS, so file providers are not ideal (they have to be baked into the image).
I'd like to define the same service using Docker labels, something like this:
"traefik.http.services.example.loadbalancer.servers.0" = "https://example.com/"
Is this a possibility?