Skip to content

Radarr🔗

Radarr is a movie collection manager for Usenet and BitTorrent users.
It can monitor multiple RSS feeds for new movies and interface with clients and indexers to grab, sort, and rename them.
It can also be configured to automatically upgrade the quality of existing files when a higher-quality format becomes available.

Setup🔗

Most of the setup is done using Recylarr since it would take an hour setting it up by hand.

Radarr compose
# Radarr
  radarr:
    image: lscr.io/linuxserver/radarr:latest
    container_name: radarr
    environment:
      - PUID=0
      - PGID=0
      - TZ=Europe/Tallinn
    volumes:
      - ./radarr:/config
      - ./media/downloads:/downloads
      - ./media/movies:/movies
    ports:
      - 7878:7878
    restart: unless-stopped

Doc unfinished