contains scripts to manage docker
Go to file
Kevin Veen-Birkenbach 996c9ba2f0 Refactored full code 2020-12-26 16:31:47 +01:00
.travis.yml Refactored full code 2020-12-26 16:31:47 +01:00
LICENSE Initial commit 2020-10-11 11:54:16 +02:00
README.md Refactored full code 2020-12-26 16:31:47 +01:00
docker-volume-backup.sh Refactored full code 2020-12-26 16:31:47 +01:00
docker-volume-recover.sh Implemented recovery script 2020-10-13 13:32:08 +02:00

README.md

docker-volume-backup

License: GPL v3 Travis CI

goal

This script backups all docker-volumes with the help of rsync.

scheme

It is part of the following scheme: backup scheme Further information you will find in this blog post.

Backup

Execute:

./docker-volume-backup.sh

Test

Delete the volume.

docker rm -f container-name
docker volume rm volume-name

Recover the volume:

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.

More information

See https://blog.ssdnodes.com/blog/docker-backup-volumes/.