contains scripts to manage docker
Go to file
2023-11-16 17:32:30 +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
databases.csv.tpl Added template file 2022-01-23 21:37:59 +01:00
docker-volume-backup.py Changed mysql to mariadb 2023-06-25 22:15:00 +02:00
docker-volume-recover.sh Updated recovery script 2023-07-09 19:42:11 +02:00
LICENSE Initial commit 2020-10-11 11:54:16 +02:00
README.md Update README.md 2023-11-16 17:32:30 +01:00

Backup Docker Volumes to Local

License: GPL v3

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

database

  docker exec -i mysql_container mysql -uroot -psecret database < db.sql

volume

Execute:


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

Database

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

Setup

Install pandas

Author

Kevin Veen-Birkenbach

License

This project is licensed under the GNU Affero General Public License v3.0. The full license text is available in the LICENSE file of this repository.

More information