Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mattrobertsky/ef279f90cd550975c58783c29d10576b to your computer and use it in GitHub Desktop.
Save mattrobertsky/ef279f90cd550975c58783c29d10576b to your computer and use it in GitHub Desktop.
how to run mongo in docker container
sudo service mongod stop
docker run -p 27017:27017 --name mongo -d mongo:3.6
mongo
# n.b. you may get a warning that your shell and server versions differ
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment