Installing Radarr

Installing Radarr can be really easy!

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.

First; our install location is going to be on Ubuntu 20.04 in the /srv directory. If you do not already have Docker installed, follow my guide here.

Open up an SSH Session and enter in the following:

chmod -R 777 /srv
cd /srv
mkdir radarr

Then you can run the following command to install Radarr (Make sure to change the Time Zone).

docker run --rm \
    --name radarr \
    -p 7878:7878 \
    -e PUID=1000 \
    -e PGID=1000 \
    -e UMASK=002 \
    -e TZ="America/Denver" \
    -v /srv/radarr:/config \
    cr.hotio.dev/hotio/radarr

That's it! Head over to http://ipaddress:7878 and continue with the setup!

Need more information on Radarr? Head over to their GitHub!

Back to Plex Guides

Add a comment