Radarr
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.
Installation
The Radarr team does not offer an official Docker image. However, a number of third parties have created and maintain their own. These instructions provide generic guidance that should apply to any Radarr Docker image.
I use a docker image from linuxserver.io to install Radarr.
If you prefer to install Sonarr via another method go to Sonarr's official downloads page.
Running Sonarr as a container
Basic examples for getting this image running as a container
Docker Compose
---
version: "2"
services:
radarr:
image: linuxserver/radarr:4.3.2
container_name: radarr
restart: unless-stopped
environment:
- UMASK_SET=022 # control permissions of files and directories created by Radarr
- TZ=Europe/London # Specify a timezone to use EG Europe/London, this is required for Radarr
- PUID=1000 # for UserID
- PGID=1000 # for GroupID
volumes:
- /host/path/to/movies:/movies # Location of Movie library on disk (See note in Application setup)
- /host/path/to/downloads:/downloads # Location of download managers output directory (See note in Application setup)
- /host/path/to/config:/config # Database and Radarr configs
ports:
- 7878:7878/tcp # The port for the Radarr webinterface
CLI
docker create \
--name=radarr \
-e UMASK_SET=022 `# control permissions of files and directories created by Radarr` \
-e TZ=Europe/London `# Specify a timezone to use EG Europe/London, this is required for Radarr` \
-e PUID=1000 `# for UserID` \
-e PGID=1000 `# for GroupID` \
-v /host/path/to/movies:/movies `# Location of Movie library on disk (See note in Application setup)` \
-v /host/path/to/downloads:/downloads `# Location of download managers output directory (See note in Application setup)` \
-v /host/path/to/config:/config `# Database and Radarr configs` \
-p 7878:7878/tcp `# The port for the Radarr webinterface` \
--restart unless-stopped \
linuxserver/radarr:4.3.2