diff --git a/README.md b/README.md index d6b32e29..ee6edcdd 100644 --- a/README.md +++ b/README.md @@ -536,11 +536,11 @@ Add labels to Traefik Docker container. ```yaml traefik: lables: - - traefik.enable: true - - traefik.http.routers.dashboard.rule: Host(`traefik.example.com`) && (PathPrefix(`/api`) || PathPrefix(`/dashboard`)) - - traefik.http.routers.dashboard.service: api@internal - - traefik.http.routers.dashboard.middlewares: auth - - traefik.http.middlewares.auth.basicauth.users: test:$2y$05$H2o72tMaO.TwY1wNQUV1K.fhjRgLHRDWohFvUZOJHBEtUXNKrqUKi # test:password + traefik.enable: true + traefik.http.routers.dashboard.rule: Host(`traefik.example.com`) && (PathPrefix(`/api`) || PathPrefix(`/dashboard`)) + traefik.http.routers.dashboard.service: api@internal + traefik.http.routers.dashboard.middlewares: auth + traefik.http.middlewares.auth.basicauth.users: test:$2y$05$H2o72tMaO.TwY1wNQUV1K.fhjRgLHRDWohFvUZOJHBEtUXNKrqUKi # test:password ``` This labels Traefik container with `--label traefik.http.routers.dashboard.middlewares=\"auth\"` and so on.