mirror of
https://github.com/kevinveenbirkenbach/docker-volume-backup.git
synced 2024-11-21 16:01:03 +01:00
contains scripts to manage docker
.travis.yml | ||
docker-volume-backup.sh | ||
docker-volume-recover.sh | ||
LICENSE | ||
README.md |
docker-volume-backup
goal
This script backups all docker-volumes with the help of rsync.
scheme
It is part of the following 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.