Is there a general way to convert these container level configuration to a global one?
Some examples would be
traefik.http.routers.dash.rule=Host(dash.swtk.eu) → could be global because all my hosts are <docker service name>.swtk.eu
traefik.enable=true but for all the containers (this one I know because I found it somewhere but I wanted to give some generic examples)
traefik.http.routers.dash.middlewares=authelia@docker → a middleware applied to all the containers
For the last example, I would also like to be able to change this on a per-container basis, but I guess that it would be traefik.http.routers.dash.middlewares=
Is there a general documentation for such "local to global" syntax?
I knew that one but wanted to provide examples that cover my use cases. My ultimate goal is to not have labels on containers for generic configuration, and only have exceptions or specific cases as labels.