Updated README.md

This commit is contained in:
Kevin Veen-Birkenbach 2020-10-12 14:50:17 +02:00
parent f64d22fb77
commit 65151194f9
2 changed files with 25 additions and 2 deletions

View File

@ -1,4 +1,27 @@
# docker-manager
contains scripts to manage docker.
# docker-volume-backup
This script backups all docker-volumes with the help of rsync.
## Backup
Execute:
``bash
./docker-volume-backup.sh
``
## Test
Delete the volume.
``bash
docker rm -f container-name
docker volume rm volume-name
``
Recover the volume:
``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
See https://blog.ssdnodes.com/blog/docker-backup-volumes/.