https://github.com/fixate/docker-mongodb-s3-backup
https://github.com/fixate/docker-mongodb-s3-backup
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fixate/docker-mongodb-s3-backup
- Owner: fixate
- Created: 2017-05-25T21:30:41.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-25T22:05:21.000Z (almost 8 years ago)
- Last Synced: 2025-01-04T08:37:47.510Z (4 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```