database-backup-image/backup.sh
Adam Štrauch 5698b278b5
All checks were successful
Build a dev image / build (push) Successful in 15s
Infinity loop
2025-10-18 19:31:52 +02:00

14 lines
385 B
Bash

#!/bin/bash
if [ "$1" = "local" ]; then
source /backup_local.sh
elif [ "$1" = "restic" ]; then
source /backup_restic.sh
elif [ "$1" = "loop" ]; then
# Inifinite loop to keep the container running and let Ofelia scheduler (or any other) manage the execution
while true; do
sleep 86400
done
else
echo "Unknown backup method. Use 'local' or 'restic'."
fi