Added Radarr

This commit is contained in:
2025-09-03 13:47:57 -07:00
parent 1a8cdcdc3d
commit 5927f4c98f
3 changed files with 23 additions and 0 deletions
+6
View File
@@ -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.
+13
View File
@@ -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
+4
View File
@@ -0,0 +1,4 @@
# Radarr
VOL_PATH=./data/radarr/config
RADARR_IMAGE=ghcr.io/hotio/radarr:release
TZ="America/Vancouver"