Skip to content

Radarr

Description⚓︎

Radarr is a movie collection manager for Usenet and BitTorrent users
It basically automatically downloads, renames and manages your movies while respecting your custom settings

Warning

This guide utilises Hardlinks
Refer to Trash's Guide for elaborate description

Note

For extended guide, refer to TRaSH-Guides

Docker⚓︎

Basic info⚓︎

Basic info with official links

docker-compose.yml⚓︎

YAML
---
version: "2.1"
services:
  radarr:
    image: linuxserver/radarr:latest
    container_name: radarr
    networks:
      - proxy # rename this to your custom docker network
    environment:
      - PUID=${PUID}
      - PGID=${PGID}
      - TZ=${TZ}
      - DOCKER_MODS=ghcr.io/gilbn/theme.park:radarr
      - TP_THEME=organizr
    volumes:
      - ${CFG_DIR}/radarr:/config
      - ${BAK_CFG_DIR}/radarr:/config/Backups
      - ${DATA_DIR}:/data
    ports:
      - 7878:7878
    restart: unless-stopped

networks:
  proxy:    # rename this to your custom docker network.
    external: true

deploy.sh⚓︎

Bash
1
2
3
mkdir -p "${CFG_DIR}"/radarr
mkdir -p "${BAK_CFG_DIR}"/radarr
docker compose up -d