diff --git a/README.md b/README.md index 7d17343..2322b94 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Further information you will find [in this blog post](https://www.veen.world/202 Execute: ```bash -./docker-volume-backup.sh +./backup-docker-to-local.sh ``` ## Recover @@ -28,7 +28,7 @@ Execute: ```bash -bash ./docker-volume-recover.sh "{{volume_name}}" "$(sha256sum /etc/machine-id | head -c 64)" "{{version_to_recover}}" +bash ./recover-docker-from-local.sh "{{volume_name}}" "$(sha256sum /etc/machine-id | head -c 64)" "{{version_to_recover}}" ``` diff --git a/docker-volume-backup.py b/backup-docker-to-local.py similarity index 100% rename from docker-volume-backup.py rename to backup-docker-to-local.py diff --git a/docker-volume-recover.sh b/recover-docker-from-local.sh similarity index 95% rename from docker-volume-recover.sh rename to recover-docker-from-local.sh index 9eccf5a..2ff2cb7 100644 --- a/docker-volume-recover.sh +++ b/recover-docker-from-local.sh @@ -12,7 +12,7 @@ version="$3" # version to backup container="${4:-}" # optional mysql_root_password="${5:-}" # optional database="${6:-}" # optional -backup_folder="Backups/$backup_hash/docker-volume-backup/$version/$volume_name" +backup_folder="Backups/$backup_hash/backup-docker-to-local/$version/$volume_name" backup_files="/$backup_folder/files" backup_sql="/$backup_folder/sql/backup.sql"