This script backups all docker-volumes with the help of rsync.
It is part of the following scheme: Further information you will find in this blog post.
Execute:
./docker-volume-backup.sh
Delete the volume.
docker rm -f container-name docker volume rm volume-name
Recover the volume:
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.
See https://blog.ssdnodes.com/blog/docker-backup-volumes/.