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

https://github.com/fixate/docker-mongodb-s3-backup


https://github.com/fixate/docker-mongodb-s3-backup

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Docker image for mongo backup to s3

Just run this image as so:

```shell
docker run --rm \
-e DBHOST=localhost \
-e DBPORT=27017 \
-e DBNAME=my-db \
-e S3DEST=s3://my-bucket/folder \
-e AWS_ACCESS_KEY_ID=awskeyid \
-e AWS_SECRET_ACCESS_KEY=123123 \
-e AWS_DEFAULT_REGION=eu-west-1 \
fixate/mongodb-s3-backup
```