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 backupOtherwise, 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 backupBUP_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 here