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>
This commit is contained in:
26
compose/individual/sonarr.yml
Normal file
26
compose/individual/sonarr.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
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
|
||||
Reference in New Issue
Block a user