From 688f82e024af8f3343b4f295510f7041b83b0dd8 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Wed, 1 Apr 2026 15:04:39 -0700 Subject: [PATCH] fix: add Traefik priority to avoid rspace wildcard conflict Co-Authored-By: Claude Opus 4.6 --- docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index d3af12e..18b190d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,6 +7,8 @@ services: - "traefik.enable=true" - "traefik.http.routers.myco-dashboard.rule=Host(`simulate.rspace.online`)" - "traefik.http.routers.myco-dashboard.entrypoints=web" + - "traefik.http.routers.myco-dashboard.priority=150" + - "traefik.docker.network=traefik-public" - "traefik.http.services.myco-dashboard.loadbalancer.server.port=8501" - "traefik.http.services.myco-dashboard.loadbalancer.healthcheck.path=/_stcore/health" - "traefik.http.services.myco-dashboard.loadbalancer.healthcheck.interval=30s"