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 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