Radarr Setup
Movie Management.
See Radarr Docker and Documentation.
Ports
Radarr Ports
Port
Protocol
Type
Purpose
7878
TCP
EXPOSED
Webface
Updated: None
Files
Radarr Files
Location
Purpose
/config
Radarr main service directory
/downloads
Radarr monitored downloads directory
Updated: None
Docker Creation
You can copy your existing configuration to docker /config
directory
adjusting for paths.
The UID/GID should be set to a user/group that has access to your media. All media clients should run under the same user to run correctly.
Your downloader will report the download path mapped in the downloader docker/service. You need to map this exact path in Radarr for it to be able to post-process downloads properly.
See Basic Configuration for example configuration.
ridarr:
image: linuxserver/radarr:latest
restart: unless-stopped
depends_on:
- nzbget
environment:
- PGID=1001
- PUID=1001
- TZ=America/Los_Angeles
volumes:
- /data/downloads:/data/downloads
- /data/media/movies:/data/media/movies
- /data/services/radarr:/config
- /etc/localtime:/etc/localtime:ro
Proxy will forward traffic to the container, so no ports need to be exposed.
Reverse Proxy Setup
Allows you to isolate your containers as well as wrap connections in SSL. See NGINX for more details. See Setup Base Proxy Control for basic proxy configuration.
See Radarr reverse proxy reference.
Using Subdomains
server {
listen 443 ssl http2;
server_name radarr.{DOMAIN} radarr;
location / {
proxy_pass http://radarr:7878;
include /etc/nginx/conf.d/proxy-control.conf;
}
}
Using Subpaths
server {
location /radarr {
proxy_pass http://radarr:7878/radarr;
include /etc/nginx/conf.d/proxy-control.conf;
}
}
Note
Set URL Base to /radarr
in Radarr before enabling the reverse-proxy.
<Config>
<UrlBase>/radarr</UrlBase>
</Config>
Add Pre-existing Series to Radarr
Existing files should be in a folder for each movie.
Movie › Bulk Import Movies › /data/movies
Be sure to set appropriate import behavior.
Be sure to search for correct match for episode if needed.
Import may timeout if initial import library is large. Restart import.
Movies › Update Library.
Ensure no Duplicate Plex Updates
Plex will trigger updates on inotify
events if configured to do so. If that
is the case:
Connect › Plex › Update Library › Disable
Otherwise duplicate items will appear on single files.