Skip to main content
Version: v1.6.49

Prowlarr

Prowlarr is a powerful indexer manager and proxy tool specifically designed for media automation, built on the .NET/React technology stack. It serves as a centralized hub that unifies the management of hundreds of Torrent trackers and Usenet indexers, seamlessly synchronizing with applications like Sonarr, Radarr, Lidarr, and Readarr.

Official website: https://prowlarr.com/

Plugin Configuration

Prowlarr Plugin Configuration

Basic Configuration

  • Enable Status:Controls whether to enable the plugin.
  • Service Address:The access address of the Prowlarr service.
  • Authentication Key:The authentication key for the Prowlarr service, used for identity verification.

Self-deployment

Docker-Cli

docker run -d \
--name=prowlarr \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
-p 9696:9696 \
-v /path/to/prowlarr/data:/config \
--restart unless-stopped \
lscr.io/linuxserver/prowlarr:latest

Docker-Compose

---
services:
prowlarr:
image: lscr.io/linuxserver/prowlarr:latest
container_name: prowlarr
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- /path/to/prowlarr/data:/config
ports:
- 9696:9696
restart: unless-stopped