Skip to content

Sonarr🔗

Sonarr 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.

Setup🔗

Most settings come from Recyclarr, but some need to be added manually.

Sonarr compose
# Sonarr
  sonarr:
    image: lscr.io/linuxserver/sonarr:latest
    container_name: sonarr
    environment:
      - PUID=0
      - PGID=0
      - TZ=Europe/Tallinn
    volumes:
      - ./sonarr:/config
      - ./media/downloads:/downloads
      - ./media/tv-shows:/tv-shows
    ports:
      - 8989:8989
    # mem and cpu limit, so that when sonarr goes nuts then it dies alone without taking down the whole LXC
    mem_limit: 1G
    cpus: 0.5
    restart: unless-stopped

Doc unfinished.