contains scripts to manage docker
Go to file
Kevin Veen-Birkenbach 8ac9512163 Added gitignore file 2022-01-23 16:06:11 +01:00
.gitignore Added gitignore file 2022-01-23 16:06:11 +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 In between commit rewriting in python 2022-01-23 13:01:49 +01:00
docker-volume-backup.py Renamed variables 2022-01-23 16:03:27 +01:00
docker-volume-backup.sh Added 'systemctl restart docker' 2021-10-18 13:25:18 +02:00
docker-volume-recover.sh Solved path bug and optimized readme.md 2021-11-11 13:47:17 +01: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 all volumes

Execute:

./docker-volume-backup.sh

Recover one volume

Execute:


bash ./docker-volume-recover.sh "{{volume_name}}" "$(sha256sum /etc/machine-id | head -c 64)"

Debug

To checkout what's going on in the mount container type in the following command:

docker run -it --entrypoint /bin/sh --rm --volumes-from {{container_name}} -v /Backups/:/Backups/ kevinveenbirkenbach/alpine-rsync

Optimation

This setup script is not optimized yet for performance. Please optimized this script for performance if you want to use it in a professional environment.

Stucking rsync

More information