diff --git a/prowlarr/README.md b/prowlarr/README.md new file mode 100644 index 0000000..2100ec9 --- /dev/null +++ b/prowlarr/README.md @@ -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. diff --git a/prowlarr/docker-compose.yml b/prowlarr/docker-compose.yml new file mode 100644 index 0000000..af60b0a --- /dev/null +++ b/prowlarr/docker-compose.yml @@ -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 diff --git a/prowlarr/sample.env b/prowlarr/sample.env new file mode 100644 index 0000000..1845911 --- /dev/null +++ b/prowlarr/sample.env @@ -0,0 +1,4 @@ +# Prowlarr +VOL_PATH=./data/prowlarr/config +PROWLARR_IMAGE=ghcr.io/hotio/prowlarr:release +TZ="America/Vancouver" \ No newline at end of file