From 2ccca4bd950cc33a7526b5ece0e0c2e253f5998e Mon Sep 17 00:00:00 2001 From: "Kevin Veen-Birkenbach [aka. Frantz]" Date: Mon, 12 Oct 2020 14:52:00 +0200 Subject: [PATCH] Modified code blocks --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3921499..dfb5204 100644 --- a/README.md +++ b/README.md @@ -5,24 +5,24 @@ This script backups all docker-volumes with the help of rsync. ## Backup Execute: -``bash +```bash ./docker-volume-backup.sh -`` +``` ## Test Delete the volume. -``bash +```bash docker rm -f container-name docker volume rm volume-name -`` +``` Recover the volume: -``bash +```bash docker volume create volume-name docker run --rm -v volume-name:/recover/ -v ~/backup/:/backup/ "kevinveenbirkenbach/alpine-rsync" sh -c "rsync -avv /backup/ /recover/" -`` +``` Restart the container.