🦁 My Prowlarr Setup
#This Prowlarr setup runs in a Docker container and is used to manage indexers for your media downloaders (e.g., Radarr, Sonarr). It includes configurations for environment variables, volume mounts, and networking.
⚙️ My Configuration Details
#🌍 Environment Variables
#Variable | Description |
---|
PUID=0 | User ID for permission management (root user) |
PGID=0 | Group ID for permission management (root group) |
TZ=Europe/London | Timezone configuration |
📂 Volume Mounts
#Volume | Description |
---|
~/prowlarr/config:/config | Mounts configuration data for persistence |
🔗 Networking
#Port Mapping | Function |
---|
9696:9696 | Prowlarr web interface for managing indexers |
📜 My Docker Compose Configuration
#services:
prowlarr:
image: lscr.io/linuxserver/prowlarr:latest # Prowlarr latest image
container_name: prowlarr # Container name for identification
environment:
- PUID=0 # Set user ID (root user)
- PGID=0 # Set group ID (root group)
- TZ=Europe/London # Set timezone
volumes:
- ~/prowlarr/config:/config # Mount the configuration directory
ports:
- "9696:9696" # Expose port 9696 for the Prowlarr web interface
restart: unless-stopped # Restart the container unless stopped manually