Skip to content

Ubuntu based image with mongodb-tools installed

License

Notifications You must be signed in to change notification settings

LironEr/docker-mongodb-tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Docker MongoDB Tools

dockerhub dockerhub

Ubuntu based image with mongodb-tools installed

Pull image

# Docker Hub
docker pull lironer/mongodb-tools

# GitHub Container Registry
docker pull ghcr.io/lironer/mongodb-tools

How to Use

For example, run the command mongodump to backup Mongo DB:

docker run --rm -it -v "$PWD"/data:/data lironer/mongodb-tools mongodump --host localhost --port 27017 --db test --gzip --archive="/data/backup.gz"