Installing Media Server Applications on Synology
Learn how to install sabnzbd, transmission, jackett, sonarr and radarr via docker on your Synology NAS
full course- What are the Media Server Applications?
- Prepare Synology for Media Components
- Sabnzbd Prerequisites
- Install the SABnzbd Container
- Configure SABnzbd
- Install the Sonarr Container
- Configuring Sonarr
- Installing Jackett
- Installing Transmission with OpenVPN
- Adding Bittorrent to Sonarr
- Create a Radarr Container
- Configuring Radarr
Radarr is almost exactly the same as Sonarr except its for movies instead. Installing a container and configuring the application is very similar to sonarr.
Creating the Container
The docker repository for radarr is here. The configuration documentation is here as well.
Again, SSH into your NAS and edit the docker-compose.yml
file. Add this text
radarr:
image: ghcr.io/linuxserver/radarr
container_name: radarr
environment:
- PUID="${PUID}"
- PGID="${PGID}"
- TZ="${TZ}"
volumes:
- /volume1/docker/radarr:/config
- /volume1/video/completed/movies:/movies
- /volume1/video/sabnzbd/complete:/usenet-downloads
- /volume1/video/transmission/complete:/bt-downloads
ports:
- 33080:7878
restart: unless-stopped
ctrl-o
, enter
, ctrl-x
to save.
Restart docker-compose
sudo docker-compose down
sudo docker-compose up -d
Confirm that the container is up in portainer and you can access radarr at http://${your nas ip}:33080
0 comments on “Create a Radarr Container”Add yours →