Skip to content

Instantly share code, notes, and snippets.

@shouryade
Created November 27, 2023 11:50
Show Gist options
  • Save shouryade/6c05300b748d65d653b4285f39480484 to your computer and use it in GitHub Desktop.
Save shouryade/6c05300b748d65d653b4285f39480484 to your computer and use it in GitHub Desktop.
MongoDB Docker for Lab Eval

creation of container

docker pull mongo
docker run -itd --name mongo-tut mongo
docker exec -itd mongo-tut mongod
docker exec -it mongo-tut mongosh

deletion after usage

docker stop mongo-tut
docker rm mongo-tut
docker rmi mongo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment