🎬 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>
26 lines
656 B
YAML
26 lines
656 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
radarr:
|
|
image: linuxserver/radarr:latest
|
|
container_name: radarr
|
|
environment:
|
|
- PUID=${PUID:-1234}
|
|
- PGID=${PGID:-65432}
|
|
- TZ=${TZ:-Europe/London}
|
|
- UMASK=022
|
|
volumes:
|
|
- ${CONFIG_ROOT:-/volume1/docker}/radarr:/config
|
|
- ${DATA_ROOT:-/volume1/data}:/data
|
|
ports:
|
|
- ${RADARR_PORT:-7878}:7878/tcp
|
|
network_mode: ${NETWORK_MODE:-synobridge}
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
restart: always
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:7878/ping"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s |