You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
619 B
16 lines
619 B
2 years ago
|
# Immediatly exit on command failure (e)
|
||
|
# and quit on unset variables (u)
|
||
|
set -ue
|
||
|
|
||
|
export BACKUP_REPO=ssh://cttuebak/media/borg/cttue/nginx-proxy
|
||
|
export BACKUP_NAME_DATA="data_$(date -u +'%Y-%m-%dT%H:%M%Z')"
|
||
|
export BORG_PASSPHRASE=$(cat "$(dirname $0)/borg_passphrase.txt")
|
||
|
|
||
|
echo "Starting Backup of nginx-proxy data..."
|
||
|
/usr/bin/borg create --compression zstd --stats ${BACKUP_REPO}::${BACKUP_NAME_DATA} /srv/docker-containers/nginx-proxy/nginx-data
|
||
|
|
||
|
echo "Backup done. Pruning backup-repo..."
|
||
|
/usr/bin/borg prune -v --list --keep-daily=7 --keep-weekly=7 --keep-monthly=10 --keep-yearly=5 ${BACKUP_REPO}
|
||
|
|
||
|
echo "Done"
|