Prowlarr
Prowlarr is an indexer manager built for media automation, using .NET/React. It serves as a central hub for managing hundreds of Torrent trackers and Usenet indexers, and can seamlessly sync with Sonarr, Radarr, Lidarr, Readarr, and more.
Official Site: https://prowlarr.com/
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 Prowlarr, 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