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.
Radarr can be installed using Docker Compose or directly via the TrueNAS SCALE Community Apps Catalog.
services:
radarr:
image: lscr.io/linuxserver/radarr:latest
container_name: radarr
environment:
- PUID=568
- PGID=568
- TZ=America/New_York
volumes:
- /mnt/tank/configs/radarr:/config
- /mnt/tank/media:/media
ports:
- 7878:7878
restart: unless-stopped
/media/movies
.Setting | Value |
---|---|
Host | Server IP |
Port | qBittorrent WebUI port |
Use Credentials | Set up during qBittorrent installation |
The below settings are for advanced users and are totally optional. To see all of the Advanced fields (usually colored orange) be sure to click the cog icon in the top left of the window to Show Advanced.
This also assumes you are using Recyclarr to sync data to Radarr. If you are not, do not continue. See the video walkthrough below for more details.
Field | Value |
---|---|
Rename Movies | True |
Standard Movie Format | {Movie CleanTitle} {(Release Year)} [imdbid-{ImdbId}] - {Edition Tags }{[Custom Formats]}{[Quality Full]}{[MediaInfo 3D]}{[MediaInfo VideoDynamicRangeType]}{[Mediainfo AudioCodec}{ Mediainfo AudioChannels]} |
Propers and Repacks | Do Not Prefer |
Recycling Bin Cleanup | 1 |
Set Permissions | True |
chmod Folder | 777 |
Why use Recyclarr profiles?
Recyclarr automates profile creation and ensures consistent quality filtering, metadata tagging, and download prioritization for a better Radarr experience.
See this section of the Notifications page.
Select Kodi (XBMC)/Emby and check the Enable box. Save and close.
Why enable metadata?
Enabling metadata allows Radarr to send detailed episode information, artwork, and tags to your media server (Kodi/Emby), enhancing library organization.
/media
ls -lah /mnt/tank/media/movies
chown -R 568:568 /mnt/tank/media/movies
chmod -R 770 /mnt/tank/media/movies