Sign inSign up

mgcoders/mongo-backup-s3

By mgcoders

•Updated over 9 years ago

Docker image that periodically uploads MongoDB backups to Amazon S3

Image
0

1.6K

mgcoders/mongo-backup-s3 repository overview

https://github.com/MgCoders/mongo-backup-s3⁠

⁠MongoDB S3 Backup Docker image

Docker image that performs periodic backups on a MongoDB database and then uploads the results to Amazon S3.

Based on the dbader/schedule⁠ Python scheduling package. Based on mondora/mongo-s3-backup⁠

⁠Configuration

The following table describes the available configuration environment variables.

NameDescriptionDefault
MONGO_HOSTMongoDB instance hostnameRequired
MONGO_DBMongoDB database nameRequired
MONGO_USERNAMEMongoDB instance usernameRequired
MONGO_PASSWORDMongoDB database passwordRequired
S3_BUCKETAmazon S3 bucket nameRequired
AWS_ACCESS_KEY_IDAmazon AWS access keyRequired
AWS_SECRET_ACCESS_KEYAmazon AWS secretRequired
BACKUP_INTERVALInterval between each backup (days)1
BACKUP_TIMEHour of the day at which the backup will be executed2:00
DATE_FORMATDate format string used as the suffix of the backup filename%Y%m%d-%H%M%S
FILE_PREFIXPrefix of the backup filenamebackup-

⁠Example

The following command starts a mongo-s3-backup container that will stay in the background uploading backups of the testdb database on the my-mongo-host MongoDB instance every day at 2:00. The backups will be uploaded to an S3 bucket named my-s3-bucket:

docker run -d -e MONGO_HOST=my-mongo-host -e MONGO_DB=testdb -e MONGO_USERNAME=user -e MONGO_PASSWORD=pass -e S3_BUCKET=my-s3-bucket -e AWS_ACCESS_KEY_ID=<your_access_key> -e AWS_SECRET_ACCESS_KEY=<your_access_secret> -e BACKUP_INTERVAL=1 --name mongo_backups mgcoders/mongo-backup-s3

Tag summary

Content type

Image

Digest

Size

239.7 MB

Last updated

over 9 years ago

docker pull mgcoders/mongo-backup-s3