How to Set-up MongoDB in Docker

Last updated on May 27 2022
Raigiri Patil

Table of Contents

How to Set-up MongoDB in Docker

Docker – Setting MongoDB

MongoDB is a famous document-oriented database that is employed by many modern-day web applications. Since MongoDB is a popular database for development, Docker has also ensured it has support for MongoDB.

We will now see the various steps for getting the Docker container for MongoDB up and running.

Step 1 − The primary step is to tug the image from Docker Hub. When you log into Docker Hub, you will be able to search and see the image for Mongo as shown below. Just type in Mongo within the search box and click on the Mongo (official) link which comes up within the search results.

Page 1 Image 1 58
mongo

Step 2 − You will see that the Docker tug command for Mongo within the details of the repository in Docker Hub.

Page 2 Image 2 52
tug

Step 3 − On the Docker Host, use the Docker tug command as shown above to download the latest Mongo image from Docker Hub.

Page 2 Image 3 27
mongo image
Page 2 Image 4 8
mongo image latest

Step 4 − Now that we have the image for Mongo, let’s primary run a MongoDB container which will be our instance for MongoDB. For this, we will issue the subsequent command −

sudo docker run -it -d mongo

The subsequent points can be noted about the above command −

  • The –it option is employed to run the container in interactive mode.
  • The –d option is employed to run the container as a daemon process.
  • And finally we are creating a container from the Mongo image.

You can then issue the docker ps command to see the running containers −

Page 3 Image 5 20
docker ps

Take a note of the subsequent points −

  • The name of the container is tender_poitras. This name will be different since the name of the containers keep on changing when you spin up a container. But just make a note of the container which you’ve launched.
  • Next, also notice the port number it is running on. It is listening on the TCP port of 27017.

Step 5 − Now let’s spin up another container which will act as our client which will be employed to connect to the MongoDB database. Let’s issue the subsequent command for this −

sudo docker run –it –link=tender_poitras:mongo mongo /bin/bash

The subsequent points can be noted about the above command −

  • The –it option is employed to run the container in interactive mode.
  • We are now linking our new container to the already launched MongoDB server container. Here, you need to mention the name of the already launched container.
  • We are then specifying that we want to launch the Mongo container as our client and then run the bin/bash shell in our new container.
Page 3 Image 6 9
bin/bash

You will now be within the new container.

Step 6 − Run the env command within the new container to see the details of how to connect to the MongoDB server container.

Page 4 Image 7 14
env

Step 7 − Now it’s time to connect to the MongoDB server from the client container. We can do this via the subsequent command −

mongo 172.17.0.2:27017

The subsequent points need to be noted about the above command

  • The mongo command is the client mongo command that is employed to connect to a MongoDB database.
  • The IP and port number is what you get when you use the env

Once you run the command, you will then be connected to the MongoDB database.

Page 5 Image 8 13
database

You can then run any MongoDB command within the command prompt. In our example, we are running the subsequent command −

use demo

This command is a MongoDB command which is employed to switch to a database name demo. If the database is not available, it will be created.

Page 5 Image 9 7
demo

Now you’ve successfully created a client and server MongoDB container.

So, this brings us to the end of blog. This Tecklearn ‘How to Set-up MongoDB in Docker’ blog helps you with commonly asked questions if you are looking out for a job in DevOps. If you wish to learn Docker and build a career in DevOps domain, then check out our interactive, Containerization using Docker Training, that comes with 24*7 support to guide you throughout your learning period. Please find the link for course details:

https://www.tecklearn.com/course/containerization-using-docker/

Containerization using Docker Training

About the Course

Tecklearn has specially designed this Containerization using Docker Training Course to advance your skills for a successful career in this domain. his Docker training online course will help you learn Docker containerization, running Docker containers, Docker image creation, Dockerfile, Docker orchestration, security best practices and more through hands-on projects and case studies. Upon completion of this online training, you will hold a solid understanding and hands-on experience with Docker.

Why Should you take Containerization using Docker Training?

  • Average salary of Docker Expert is $110k – Indeed.com
  • According to Grand View Research, the DevOps market size is estimated to be worth $12.85 billion by 2025. DevOps professionals are highly paid and in-demand throughout industries including retail, eCommerce, finance, and technology.
  • Intuit, PayPal, Splunk, Uber & many other MNC’s worldwide use Docker across industries

What you will Learn in this Course?

Introduction to DevOps

  • What is Software Development
  • Software Development Life Cycle
  • Why DevOps?
  • What is DevOps?
  • DevOps Lifecycle
  • DevOps Tools
  • Benefits of DevOps
  • How DevOps is related to Agile Delivery
  • DevOps Implementation

Containerization using Docker – Part 1

  • Introduction to Docker
  • Understanding Docker Lifecycle
  • Docker Architecture
  • Components of Docker Ecosystem
  • Common Docker Operations
  • Committing changes in a Container
  • Hands On

Containerization using Docker – Part 2

  • Building Custom Docker Images
  • Docker Image
  • Introduction to Docker Swarm
  • Deploying a 2-Node Cluster using Docker Swarm
  • Hands on

 

0 responses on "How to Set-up MongoDB in Docker"

Leave a Message

Your email address will not be published. Required fields are marked *