homelab/compose/media/automation/prowlarr/compose.yaml
Eduardo Figueroa 3bf1575ca8 chore: General catchup - service updates and cleanup
Updated service configurations, added new services, removed deprecated
ones, and improved gitignore patterns for better repository hygiene.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-03-15 05:23:02 +00:00

43 lines
1.1 KiB
YAML

# Prowlarr - Indexer Manager for *arr Apps
# Docs: https://wiki.servarr.com/prowlarr
services:
prowlarr:
container_name: prowlarr
image: lscr.io/linuxserver/prowlarr:latest
env_file:
- .env
volumes:
- ./config:/config
restart: unless-stopped
networks:
- homelab
labels:
# Traefik
traefik.enable: true
traefik.docker.network: homelab
# Web UI
traefik.http.routers.prowlarr.rule: Host(`prowlarr.fig.systems`)
traefik.http.routers.prowlarr.entrypoints: websecure
traefik.http.routers.prowlarr.tls.certresolver: letsencrypt
traefik.http.services.prowlarr.loadbalancer.server.port: 9696
# SSO Protection
traefik.http.routers.prowlarr.middlewares: authelia
# Homarr Discovery
homarr.name: Prowlarr (Indexers)
homarr.group: Automation
homarr.icon: mdi:cloud-search
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:9696/ping || exit 1"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
networks:
homelab:
external: true