Run Docker Mongo Container
Pull the Latest Mongo Image
docker pull mongo:latestStart the Container
docker run -d -p 27017:27017 --name=docker-mongo-db mongo:latestStop the Container
docker stop docker-mongo-dbStarting the stopped container
docker start docker-mongo-dbRemoving the Mongo DB Container
docker rm docker-mongo-dbLast updated