refactored all to dev

This commit is contained in:
2025-11-26 21:48:53 -08:00
parent a8066686bc
commit f8ca733307
170 changed files with 12 additions and 29 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"