Radarr

Link to Github

Radarr is a movie collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new movies and will interface with clients and indexers to grab, sort, and rename them. It can also be configured to automatically upgrade the quality of existing files in the library when a better quality format becomes available. Note that only one type of a given movie is supported. If you want both an 4k version and 1080p version of a given movie you will need multiple instances.

My instances of Radarr are hosted on Latte

https://github.com/trentnbauer/agg/blob/205cfc374516886a137f2f0b66dca9c87fa0f740/docker-compose/radarr.yml
---
version: "2.1"
services:
  app:
    image: ghcr.io/linuxserver/radarr:version-5.0.3.8127@sha256:9d963b1a7cf228904a0d17ad99e5fe2aeb91c17432dbe166ba1950664e3a9f86
    environment:
      #- PUID=1000
      #- PGID=1000
      - TZ=$TZ
    volumes:
      - config:/config
      - media:/movies
      - downloads:/downloads
    ports:
      - $PORT:7878
    restart: unless-stopped
    healthcheck:
      test: curl --connect-timeout 15 --silent --show-error --fail $HOST:$PORT/ping
      interval: 3m
      timeout: 30s
      retries: 3
      start_period: 30s

volumes:
  config:
  media:
    driver_opts:
      type: nfs
      o: addr=$STORAGE,nfsvers=4
      device: :$MEDIA
  downloads:
    driver_opts:
      type: nfs 
      o: addr=$STORAGE,nfsvers=4
      device: :$DOWNLOAD

The general instance of Radarr, used to capture 720 and 1080p content

Port
Purpose

7878

Webui

Host Volume
Container Volume
Purpose

media_downloads

/downloads

Where qBittorrent downloads too. Required to access completed downloads to shift to the Media library. Stored of Fettuccine, accessed via NFS

media_media

/movies

Media library that Plex views. Required to manage metadata and add to library. Stored of Fettuccine, accessed via NFS

media_backups

/backups

Dedicated shared backup volume

media_radarr1080

/config

Config files

Integration
Purpose

qBittorrent

To add and monitor downloading contented

Sync from 4k instance

Syncs all movies from the 4k instance back to this instance. This is to ensure that any movie in the 4k instance will also be available in 1080p quality

The 4k instance of Radarr. This content is (generally) not available outside of home

Port
Purpose

7879

Webui

Host Volume
Container Volume
Purpose

media_downloads

/downloads

Where qBittorrent downloads too. Required to access completed downloads to shift to the Media library. Stored of Fettuccine, accessed via NFS

media_media

/movies

Media library that Plex views. Required to manage metadata and add to library. Stored of Fettuccine, accessed via NFS

media_backups

/backups

Dedicated shared backup volume

media_radarr4k

/config

Config files

Integration
Purpose

qBittorrent

To add and monitor downloading contented

Last updated

Was this helpful?