Multiple instances issue only 1 container accessible

Successfully running radarr as reverse proxy traefik with docker. Just created an additional radarr instance (radarr-uhd), which is accessible via localhost:port but the reverse proxy is giving a 502 for the new instance.

My gut feeling says it has to do with the loadbalancer labels. Had a look at the traefik docs routing services, but I'm a bit out of depth and not sure how to apply this correctly:

radarr.yml

      # HTTP Services
      - "traefik.http.routers.radarr-rtr.service=radarr-svc"
      - "traefik.http.services.radarr-svc.loadbalancer.server.port=7878"

radarr-uhd.yml

      # HTTP Services
      - "traefik.http.routers.radarr-uhd-rtr.service=radarr-uhd-svc"
      - "traefik.http.services.radarr-uhd-svc.loadbalancer.server.port=7979"

How do I set this up correctly so radarr-uhd.domain.com is also accessible as a reverse proxy?

Got it working, had to adjust the loadbalancer port from new instance from to internal port:

      # HTTP Services
      - "traefik.http.routers.radarr-uhd-rtr.service=radarr-uhd-svc"
      - "traefik.http.services.radarr-uhd-svc.loadbalancer.server.port=7878"

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.