An open API service indexing awesome lists of open source software.

https://github.com/imvexed/b2backup

A simple backblaze backup container
https://github.com/imvexed/b2backup

backblaze backblaze-b2 backup cron docker

Last synced: 7 months ago
JSON representation

A simple backblaze backup container

Awesome Lists containing this project

README

          

# b2backup
A simple backblaze backup container

This is intended to be used for backing up anything found in the containers `/backup` directory to a Backblaze Bucket.

Typical usage of this would involve setting a Backblaze Bucket's lifecycle retention for prior version to something like 30 days, then setting this container up to mount in data directories from your database, etc. and run on a cron job nightly.

## Example usage:
```bash
docker run -e FILE_NAME=backup.7z -e ZIP_PASSWORD=p@sSw0rD -e B2_KEY_ID=... -e B2_KEY=... -e B2_BUCKET=my_bucket -v /mydir/data1:/backup/data1 -v /mydir/data2:/backup/data2 imvexxed/b2backup
```