# Nextcloud Docker - Tâches automatisées # Format: minute hour day month weekday command # Backup quotidien à 5h00 du matin (heure de Paris) 0 5 * * * cd /project && bash scripts/backup.sh >> /logs/cron_backup.log 2>&1 # Health check quotidien à 6h00 (après le backup) 0 6 * * * cd /project && bash scripts/check-health.sh >> /logs/cron_health.log 2>&1 # Nettoyage hebdomadaire le dimanche à 3h00 0 3 * * 0 cd /project && bash scripts/clean-old-logs.sh >> /logs/cron_clean.log 2>&1