A robust backup solution for Docker volumes
1.1K
This will backup volumes automatically every day.
docker run -d \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /backup:/backup \
-e CRON_SCHEDULE="0 0 * * *" \
jamrizzi/ident:latest
This will run a single backup for all your containers.
docker run --rm \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /backup:/backup \
jamrizzi/ident:latest backup
This will restore all backed up volumes for a single service or container.
docker run --rm \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /backup:/backup \
-e SERVICE="my-service-name" \
jamrizzi/ident:latest restore
You can file error and bug reports as well as feature requests at https://github.com/jamrizzi/ident/issues.
git checkout -b my-new-featuregit commit -m 'Add some feature'git push origin my-new-featureContent type
Image
Digest
Size
300 MB
Last updated
over 9 years ago
docker pull jamrizzi/ident