From 5927f4c98f4ebfdc8bb138981e714b248896b382 Mon Sep 17 00:00:00 2001 From: Nick Yeoman Date: Wed, 3 Sep 2025 13:47:57 -0700 Subject: [PATCH] Added Radarr --- radarr/README.md | 6 ++++++ radarr/docker-compose.yml | 13 +++++++++++++ radarr/sample.env | 4 ++++ 3 files changed, 23 insertions(+) create mode 100644 radarr/README.md create mode 100644 radarr/docker-compose.yml create mode 100644 radarr/sample.env diff --git a/radarr/README.md b/radarr/README.md new file mode 100644 index 0000000..e7ad56b --- /dev/null +++ b/radarr/README.md @@ -0,0 +1,6 @@ +# Radarr + +Official Site: https://radarr.video/ +proxy port: 7878 + +Radarr is an automated movie collection manager that monitors and downloads movies for you. It keeps track of movies on your watchlist (which can be populated from various sources like Trakt or IMDb lists) and scans your configured indexers for available releases. When a movie is found that matches your specified quality profiles, Radarr automatically sends it to your download client (like qBittorrent or SABnzbd). Once the download is finished, Radarr handles the rest by renaming the file according to your rules, moving it to your movie library folder, and notifying your media server to pick up the new content. It also has the ability to automatically upgrade existing movies in your library to a higher quality version when one becomes available. \ No newline at end of file diff --git a/radarr/docker-compose.yml b/radarr/docker-compose.yml new file mode 100644 index 0000000..4c6a393 --- /dev/null +++ b/radarr/docker-compose.yml @@ -0,0 +1,13 @@ +services: + radarr: + image: ${RADARR_IMAGE} + ports: + - "7878:7878" + environment: + - PUID=1000 + - PGID=1000 + - UMASK=002 + - TZ=${TZ} + volumes: + - ${VOL_PATH}/radarr/config:/config + - ${VOL_PATH}/radarr/data:/data \ No newline at end of file diff --git a/radarr/sample.env b/radarr/sample.env new file mode 100644 index 0000000..bf5dd98 --- /dev/null +++ b/radarr/sample.env @@ -0,0 +1,4 @@ +# Radarr +VOL_PATH=./data/radarr/config +RADARR_IMAGE=ghcr.io/hotio/radarr:release +TZ="America/Vancouver"