🎬 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>
25 lines
436 B
Django/Jinja
25 lines
436 B
Django/Jinja
# Docker Environment Variables for Arrs Media Stack
|
|
# Generated by Ansible on {{ ansible_date_time.iso8601 }}
|
|
|
|
# User and Group IDs
|
|
PUID=1000
|
|
PGID=1000
|
|
|
|
# Timezone
|
|
TZ={{ timezone }}
|
|
|
|
# Paths
|
|
MEDIA_ROOT={{ media_root }}
|
|
DOCKER_ROOT={{ docker_root }}
|
|
COMPOSE_DIR={{ docker_compose_dir }}
|
|
|
|
# Network
|
|
DOCKER_NETWORK=arrs-network
|
|
|
|
# Restart Policy
|
|
RESTART_POLICY=unless-stopped
|
|
|
|
# Logging
|
|
LOG_DRIVER=json-file
|
|
LOG_MAX_SIZE=10m
|
|
LOG_MAX_FILE=3 |