mirror of
https://github.com/kevinveenbirkenbach/docker-volume-backup.git
synced 2024-11-21 16:01:03 +01:00
Modified code blocks
This commit is contained in:
parent
ef80363143
commit
2ccca4bd95
12
README.md
12
README.md
@ -5,24 +5,24 @@ This script backups all docker-volumes with the help of rsync.
|
||||
## Backup
|
||||
Execute:
|
||||
|
||||
``bash
|
||||
```bash
|
||||
./docker-volume-backup.sh
|
||||
``
|
||||
```
|
||||
|
||||
## Test
|
||||
Delete the volume.
|
||||
|
||||
``bash
|
||||
```bash
|
||||
docker rm -f container-name
|
||||
docker volume rm volume-name
|
||||
``
|
||||
```
|
||||
|
||||
Recover the volume:
|
||||
|
||||
``bash
|
||||
```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.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user