Thursday, July 29, 2021

Docker Commands

 MongoDB Docker Commands

Below docker command start a mongodb container which can be accessed from local machine on
localhost port 27017 and the container will start on the system restart as well.

> docker run --name mongodbalways --restart=always -d -p 27017:27017  mongo:latest

Docker Commands

 MongoDB Docker Commands Below docker command start a mongodb container which can be accessed from local machine on localhost port 27017 and...