mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
Added Radarr
This commit is contained in:
@@ -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.
|
||||||
@@ -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
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
# Radarr
|
||||||
|
VOL_PATH=./data/radarr/config
|
||||||
|
RADARR_IMAGE=ghcr.io/hotio/radarr:release
|
||||||
|
TZ="America/Vancouver"
|
||||||
Reference in New Issue
Block a user