Creates a backup using bup.
There are two modes. When passing a volume to be mounted in /data, the index/save mechanism of bup is used to create the backup:
docker create \
--name "backup" \
-e "BUP_NAME=backup"
-v /directory/to/backup:/data
rankenstein/bup
docker start -a backup
Otherwise, the split mechanism is used, which requires the data be be sent to stdin:
docker create -i \
--name "backup" \
-e "BUP_NAME=backup"
rankenstein/bup
cat /file/to/backup | docker start -ai backup
BUP_NAME: The branch name to use for the bup backup (default: backup)/data: The data that should be backed up/backup: The backup will be saved hereContent type
Image
Digest
sha256:ef3fd2b89…
Size
92.5 MB
Last updated
over 10 years ago
docker pull rankenstein/bup