I was running v2.3 via docker-compose and today I upgraded to 2.5.
Even though I see some services on the dashboard, I don't see the ones configured in files in config/*
Double checked traefik toml and I am listing this:
[providers]
providersThrottleDuration = "10s"
[providers.docker]
# throttleDuration = "30s"
watch = true
endpoint = "unix:///var/run/docker.sock"
network = "traefik_proxy"
defaultRule = 'Host(`domain.com`) && PathPrefix(`/{{ .Name }}`) '
[providers.file]
directory = "config/"
watch = true
I also checked the blog post and documentation but didn't see any breaking change with this new version. Any idea on what is going on ?
Thank you