Files
backup-docker-to-local/README.md

31 lines
545 B
Markdown
Raw Normal View History

2020-10-12 14:50:17 +02:00
# docker-volume-backup
2020-10-11 18:39:06 +02:00
2020-10-12 14:50:17 +02:00
This script backups all docker-volumes with the help of rsync.
## Backup
Execute:
2020-10-12 14:51:09 +02:00
2020-10-12 14:50:17 +02:00
``bash
./docker-volume-backup.sh
``
## Test
Delete the volume.
2020-10-12 14:51:09 +02:00
2020-10-12 14:50:17 +02:00
``bash
docker rm -f container-name
docker volume rm volume-name
``
Recover the volume:
2020-10-12 14:51:09 +02:00
2020-10-12 14:50:17 +02:00
``bash
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
2020-10-11 18:39:06 +02:00
See https://blog.ssdnodes.com/blog/docker-backup-volumes/.