Skip to content

Instantly share code, notes, and snippets.

@Sierra-034
Created August 21, 2023 20:58
Show Gist options
  • Save Sierra-034/6f83197ec21fca752659d62fcfbb924d to your computer and use it in GitHub Desktop.
Save Sierra-034/6f83197ec21fca752659d62fcfbb924d to your computer and use it in GitHub Desktop.
How to setup mongodb on docker

How to setup mongodb on docker

The next command will download the latest mongodb docker image and will create a container with the given port, name and volumes to persist db data.

docker run -d -p 9000:27017 --name example-mongo -v mongo-data:/data/db mongo:latest

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment