https://github.com/leafney/alpine-mongo-tools
alpine mongodb-tools
https://github.com/leafney/alpine-mongo-tools
alpine docker mongodb-tools
Last synced: 3 months ago
JSON representation
alpine mongodb-tools
- Host: GitHub
- URL: https://github.com/leafney/alpine-mongo-tools
- Owner: leafney
- Created: 2019-03-23T07:07:02.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-23T07:14:51.000Z (about 6 years ago)
- Last Synced: 2025-01-14T15:23:44.034Z (5 months ago)
- Topics: alpine, docker, mongodb-tools
- Language: Dockerfile
- Size: 1000 Bytes
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Alpine-Mongo-Tools
alpine `mongodb-tools` image
#### Get Image from Docker Hub
```
$ docker pull leafney/alpine-mongo-tools
```#### How to Use
For example, Use command `mongodump` to backup Mongo database for Container named `mongodb` :
```
$ docker run --rm -it -v "$PWD"/data:/data --link=mongodb:mongo leafney/alpine-mongo-tools:latest mongodump --host mongo --port 27017 --db test --out /data --gzip
```