Sonarr reverse proxy with Traefik on docker

Sonarr Ver. 2.0.0.5338
OS: Docker

Hi guys i’m having some trouble configuring sonarr with traefik on docker
Here is my docker-compose.yml

 sonarr:
    image: linuxserver/sonarr
    container_name: sonarr
    environment:
      - TZ=Europe/Rome
    volumes:
      - /path/to/Sonarr:/config
    restart:        unless-stopped
    networks:
      - traefik_proxy
    ports:
      - "8989:8989"
    labels:
      - "traefik.enable=true"
      - "traefik.backend=sonarr"
      - "traefik.frontend.rule=Host:home.local; PathPrefixStrip: /sonarr"
      - "traefik.port=8989"
      - "traefik.docker.network=traefik_proxy"

With thi config every time i type home.local/sonarr (or localhost/sonarr) i get a white screen with only “Sonarr Ver.” written on it. All the other resources get a 404 error

Any idea?

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