contains scripts to manage docker
Go to file
Kevin Veen-Birkenbach 6537626d77 optimized code formating 2024-02-05 19:18:54 +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 Implemented stamp function 2024-01-29 20:04:21 +01:00
backup-docker-to-local.py optimized code formating 2024-02-05 19:18:54 +01:00
database_entry_seeder.py Removed unecessary host from seeder function 2024-01-06 14:23:23 +01:00
databases.csv.tpl Added template file 2022-01-23 21:37:59 +01:00
recover-docker-from-local.sh Implemented stop on first error 2024-01-12 16:20:17 +01:00

README.md

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:

./backup-docker-to-local.sh

Recover

database

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

volume

Execute:


bash ./recover-docker-from-local.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