Sonarr

Sonarr

Download series

Sonarr (formerly NZBdrone) is a PVR for usenet and bittorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.

🏠 Home: https://sonarr.tv/
📦 Image: https://hub.docker.com/r/linuxserver/sonarr

name: sonarr
services:
  sonarr:
    image: lscr.io/linuxserver/sonarr:4.0.9
    container_name: sonarr
    restart: unless-stopped
    environment:
      PUID: ${PUID}
      PGID: ${PGID}
      TZ: ${TIMEZONE}
    volumes:
      - ${DOCKER_VOLUMES}/sonarr:/config
      - ${STORAGE_MEDIA}:/media
      - ${STORAGE_TORRENT_DOWNLOADS}:/downloads
    networks:
      - proxy
    labels:
      traefik.enable: true
      traefik.http.routers.sonarr.entrypoints: websecure
      traefik.http.routers.sonarr.middlewares: https-local@file
      traefik.http.services.sonarr.loadbalancer.server.port: 8989
      homepage.group: Arr
      homepage.name: Sonarr
      homepage.icon: sonarr.png
      homepage.href: https://sonarr.${MYDOMAIN}/
      homepage.description: Download series

networks:
  proxy:
    external: true