Files
arr-suite-template-bootstrap/compose/individual/sonarr.yml
openhands 24f2cd64e9 Initial template repository
🎬 ARR Suite Template Bootstrap - Complete Media Automation Stack

Features:
- 16 production services (Prowlarr, Sonarr, Radarr, Plex, etc.)
- One-command Ansible deployment
- VPN-protected downloads via Gluetun
- Tailscale secure access
- Production-ready security (UFW, Fail2Ban)
- Automated backups and monitoring
- Comprehensive documentation

Ready for customization and deployment to any VPS.

Co-authored-by: openhands <openhands@all-hands.dev>
2025-11-28 04:26:12 +00:00

26 lines
656 B
YAML

version: '3.8'
services:
sonarr:
image: linuxserver/sonarr:latest
container_name: sonarr
environment:
- PUID=${PUID:-1234}
- PGID=${PGID:-65432}
- TZ=${TZ:-Europe/London}
- UMASK=022
volumes:
- ${CONFIG_ROOT:-/volume1/docker}/sonarr:/config
- ${DATA_ROOT:-/volume1/data}:/data
ports:
- ${SONARR_PORT:-8989}:8989/tcp
network_mode: ${NETWORK_MODE:-synobridge}
security_opt:
- no-new-privileges:true
restart: always
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8989/ping"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s