added prowlarr

This commit is contained in:
2025-09-03 13:21:19 -07:00
parent c4159be969
commit 722029112a
3 changed files with 24 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
# Prowlarr
Official Site: https://prowlarr.com/
docker docs: https://hotio.dev/containers/prowlarr/ (VPN setup here)
Proxy port: 9696
Prowlarr is an indexer manager and proxy developed by the *arr team to integrate with and support applications like Sonarr, Radarr, Lidarr, and Readarr. Its primary function is to centralize the management of your various torrent tracker and Usenet indexer configurations. Instead of manually adding and configuring each indexer in every single one of your *arr applications, you simply add them once to Prowlarr. Prowlarr then automatically syncs these indexers and their settings to all of your connected apps, drastically simplifying setup and maintenance while also providing a single dashboard to monitor the status and statistics of all your indexer sources.
+13
View File
@@ -0,0 +1,13 @@
services:
prowlarr:
image: ${PROWLARR_IMAGE}
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=${TZ}
volumes:
- "${VOL_CONFIG_PATH:-./data/prowlarr/config}:/config"
ports:
- 9696:9696
+4
View File
@@ -0,0 +1,4 @@
# Prowlarr
VOL_PATH=./data/prowlarr/config
PROWLARR_IMAGE=ghcr.io/hotio/prowlarr:release
TZ="America/Vancouver"