🎬 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>
17 lines
349 B
Django/Jinja
17 lines
349 B
Django/Jinja
#!/bin/bash
|
|
# Update and restart all Arrs services
|
|
|
|
echo "Updating Arrs Media Stack..."
|
|
cd {{ docker_compose_dir }}
|
|
|
|
echo "Pulling latest images..."
|
|
docker-compose pull
|
|
|
|
echo "Restarting services with new images..."
|
|
docker-compose up -d
|
|
|
|
echo "Cleaning up old images..."
|
|
docker image prune -f
|
|
|
|
echo "Update completed successfully!"
|
|
docker-compose ps |