mirror of
https://github.com/kevinveenbirkenbach/docker-volume-backup.git
synced 2024-10-31 23:33:11 +01:00
removed file rsync
This commit is contained in:
parent
0f6acc7834
commit
a05bf52e54
@ -26,11 +26,7 @@ do
|
|||||||
mkdir -vp "$native_backups_mount_prefix$backup_dir_path";
|
mkdir -vp "$native_backups_mount_prefix$backup_dir_path";
|
||||||
fi
|
fi
|
||||||
docker run --rm --volumes-from "$docker_container_name" -v "$native_backups_mount:$docker_backups_mount" "kevinveenbirkenbach/alpine-rsync" sh -c "
|
docker run --rm --volumes-from "$docker_container_name" -v "$native_backups_mount:$docker_backups_mount" "kevinveenbirkenbach/alpine-rsync" sh -c "
|
||||||
test -d $source_path &&
|
rsync -ab --delete --delete-excluded --backup-dir=\"$($backup_dir_path)\" $source_path $destination_path";
|
||||||
mkdir -p \"$destination_path\" &&
|
|
||||||
rsync -ab --delete --delete-excluded --backup-dir=\"$backup_dir_path\" $source_path $destination_path ||
|
|
||||||
mkdir -p \"$(dirname "$destination_path")\" &&
|
|
||||||
rsync -ab --delete --delete-excluded --backup-dir=\"$(dirname "$backup_dir_path")\" $source_path $(dirname "$destination_path")";
|
|
||||||
if [ "$destination_path" == "$first_destination_path" ]
|
if [ "$destination_path" == "$first_destination_path" ]
|
||||||
then
|
then
|
||||||
echo "Cloning first to latest..."
|
echo "Cloning first to latest..."
|
||||||
|
Loading…
Reference in New Issue
Block a user