Radarr

Radarr

Radarr

  • You can support more guides like this Click to Donate
  • Version
  • Create Date July 16, 2024
  • Last Updated July 16, 2024
  • Installation Support Ask Support
  • Number of views
    N/A

Movie collection manager for Usenet and BitTorrent users

About: https://radarr.video

In this guide i will show how to install Radarr on your UGREEN NASync using Portainer and Docker.

If you already have docker and portainer installed and you know your user id and group id, skip to Step 5

Follow this guide to install docker: How to install docker

Follow this guide to install portainer: How to install portainer

Follow this guide to connect to your NAS terminal to find your username ID and group ID: How to connect to NAS via terminal using putty

Find your current time zone on this website, as example for Brussels is:

TZ=Europe/Brussels

Open Portainer by typing in your web browser http://yournasip:19000

After you login on Portainer, go to Home, then click on your Local Environment

Go to Stacks and click on Add stack

On the name type radarr, select Web editor and paste the code below.

Make sure you replace the PUID and PGID with the values for your user found on Step 3
Make sure you replace the TZ value with the value for your specific zone found on Step 4

restart: you can choose from alwaysunless-stopped, or on-failure[:number of retries]

version: "3.9"
services:
  radarr:
    image: lscr.io/linuxserver/radarr:latest
    container_name: radarr
    environment:
      - PUID=1000
      - PGID=10
      - TZ=Europe/Brussels
    volumes:
      - /volume1/DockerData/radarr/data:/config
      - /volume1/Movies:/movies #optional, replace the path before ":" with your path to Movies folder
      - /volume1/Downloads/Transmission/downloads:/downloads #optional, replace the path before ":" with your client download folder 
    ports:
      - 7878:7878
    restart: unless-stopped

Scroll down and click on Deploy the stack.

If everything goes well, you will get a message that the stack was successfully deployed.

You will see now the container running

Now on your web browser type http://yournasip:7878 and finish the radarr setup.

User Reviews
You are not allowed to post review.
Posted in .