diff --git a/docker-compose.yaml b/docker-compose.yaml index e3e2297..52a57a6 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -11,7 +11,7 @@ services: - "--providers.docker=true" - "--providers.docker.exposedbydefault=false" - "--providers.docker.network=proxy" - - "--entryPoints.web.address=:80" + - "--entryPoints.test.address=:80" ports: - "80:80" - "8080:8080" @@ -26,7 +26,7 @@ services: labels: - "traefik.enable=true" - "traefik.http.routers.whoami.rule=Host(`whoami.docker.localhost`)" - - "traefik.http.routers.whoami.entrypoints=web" + - "traefik.http.routers.whoami.entrypoints=test" test: image: ghcr.io/kljensen/hello-world-http:latest restart: unless-stopped @@ -35,6 +35,6 @@ services: labels: - "traefik.enable=true" - "traefik.http.routers.test.rule=Host(`test.docker.localhost`)" - - "traefik.http.routers.test.entrypoints=web" + - "traefik.http.routers.test.entrypoints=test" networks: proxy: