2014-05-05 13:17:58 -04:00
|
|
|
page_title: Dockerizing MongoDB
|
2014-06-01 16:48:04 -04:00
|
|
|
page_description: Creating a Docker image with MongoDB pre-installed using a Dockerfile and sharing the image on Docker Hub
|
2014-05-05 13:17:58 -04:00
|
|
|
page_keywords: docker, dockerize, dockerizing, article, example, docker.io, platform, package, installation, networking, mongodb, containers, images, image, sharing, dockerfile, build, auto-building, virtualization, framework
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-21 17:05:19 -04:00
|
|
|
# Dockerizing MongoDB
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
## Introduction
|
|
|
|
|
2014-06-01 16:48:04 -04:00
|
|
|
In this example, we are going to learn how to build a Docker image with
|
|
|
|
MongoDB pre-installed. We'll also see how to `push` that image to the
|
|
|
|
[Docker Hub registry](https://hub.docker.com) and share it with others!
|
2014-05-05 13:17:58 -04:00
|
|
|
|
|
|
|
Using Docker and containers for deploying [MongoDB](https://www.mongodb.org/)
|
|
|
|
instances will bring several benefits, such as:
|
|
|
|
|
|
|
|
- Easy to maintain, highly configurable MongoDB instances;
|
|
|
|
- Ready to run and start working within milliseconds;
|
|
|
|
- Based on globally accessible and shareable images.
|
|
|
|
|
|
|
|
> **Note:**
|
|
|
|
>
|
|
|
|
> If you do **_not_** like `sudo`, you might want to check out:
|
2014-05-21 17:05:19 -04:00
|
|
|
> [*Giving non-root access*](/installation/binaries/#giving-non-root-access).
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
## Creating a Dockerfile for MongoDB
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
Let's create our `Dockerfile` and start building it:
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
$ nano Dockerfile
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
Although optional, it is handy to have comments at the beginning of a
|
|
|
|
`Dockerfile` explaining its purpose:
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
# Dockerizing MongoDB: Dockerfile for building MongoDB images
|
|
|
|
# Based on ubuntu:latest, installs MongoDB following the instructions from:
|
|
|
|
# http://docs.mongodb.org/manual/tutorial/install-mongodb-on-ubuntu/
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
> **Tip:** `Dockerfile`s are flexible. However, they need to follow a certain
|
|
|
|
> format. The first item to be defined is the name of an image, which becomes
|
|
|
|
> the *parent* of your *Dockerized MongoDB* image.
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
We will build our image using the latest version of Ubuntu from the
|
2014-06-01 16:48:04 -04:00
|
|
|
[Docker Hub Ubuntu](https://registry.hub.docker.com/_/ubuntu/) repository.
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
# Format: FROM repository[:version]
|
|
|
|
FROM ubuntu:latest
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
Continuing, we will declare the `MAINTAINER` of the `Dockerfile`:
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
# Format: MAINTAINER Name <email@addr.ess>
|
|
|
|
MAINTAINER M.Y. Name <myname@addr.ess>
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
> **Note:** Although Ubuntu systems have MongoDB packages, they are likely to
|
|
|
|
> be outdated. Therefore in this example, we will use the official MongoDB
|
|
|
|
> packages.
|
|
|
|
|
|
|
|
We will begin with importing the MongoDB public GPG key. We will also create
|
|
|
|
a MongoDB repository file for the package manager.
|
|
|
|
|
|
|
|
# Installation:
|
|
|
|
# Import MongoDB public GPG key AND create a MongoDB list file
|
2015-02-11 17:16:41 -05:00
|
|
|
RUN apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv 7F0CEB10
|
2014-05-05 13:17:58 -04:00
|
|
|
RUN echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | tee /etc/apt/sources.list.d/10gen.list
|
|
|
|
|
|
|
|
After this initial preparation we can update our packages and install MongoDB.
|
|
|
|
|
|
|
|
# Update apt-get sources AND install MongoDB
|
2014-07-07 14:06:34 -04:00
|
|
|
RUN apt-get update && apt-get install -y mongodb-org
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
> **Tip:** You can install a specific version of MongoDB by using a list
|
|
|
|
> of required packages with versions, e.g.:
|
|
|
|
>
|
2014-07-07 14:06:34 -04:00
|
|
|
> RUN apt-get update && apt-get install -y mongodb-org=2.6.1 mongodb-org-server=2.6.1 mongodb-org-shell=2.6.1 mongodb-org-mongos=2.6.1 mongodb-org-tools=2.6.1
|
2014-05-05 13:17:58 -04:00
|
|
|
|
|
|
|
MongoDB requires a data directory. Let's create it as the final step of our
|
|
|
|
installation instructions.
|
2014-04-15 20:53:12 -04:00
|
|
|
|
|
|
|
# Create the MongoDB data directory
|
|
|
|
RUN mkdir -p /data/db
|
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
Lastly we set the `ENTRYPOINT` which will tell Docker to run `mongod` inside
|
|
|
|
the containers launched from our MongoDB image. And for ports, we will use
|
|
|
|
the `EXPOSE` instruction.
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
# Expose port 27017 from the container to the host
|
2014-04-15 20:53:12 -04:00
|
|
|
EXPOSE 27017
|
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
# Set usr/bin/mongod as the dockerized entry-point application
|
|
|
|
ENTRYPOINT usr/bin/mongod
|
|
|
|
|
|
|
|
Now save the file and let's build our image.
|
|
|
|
|
|
|
|
> **Note:**
|
|
|
|
>
|
2014-05-21 17:05:19 -04:00
|
|
|
> The full version of this `Dockerfile` can be found [here](/examples/mongodb/Dockerfile).
|
2014-05-05 13:17:58 -04:00
|
|
|
|
|
|
|
## Building the MongoDB Docker image
|
|
|
|
|
|
|
|
With our `Dockerfile`, we can now build the MongoDB image using Docker. Unless
|
|
|
|
experimenting, it is always a good practice to tag Docker images by passing the
|
|
|
|
`--tag` option to `docker build` command.
|
|
|
|
|
|
|
|
# Format: sudo docker build --tag/-t <user-name>/<repository> .
|
|
|
|
# Example:
|
|
|
|
$ sudo docker build --tag my/repo .
|
|
|
|
|
|
|
|
Once this command is issued, Docker will go through the `Dockerfile` and build
|
|
|
|
the image. The final image will be tagged `my/repo`.
|
|
|
|
|
2014-06-01 16:48:04 -04:00
|
|
|
## Pushing the MongoDB image to Docker Hub
|
2014-05-05 13:17:58 -04:00
|
|
|
|
|
|
|
All Docker image repositories can be hosted and shared on
|
2014-06-01 16:48:04 -04:00
|
|
|
[Docker Hub](https://hub.docker.com) with the `docker push` command. For this,
|
2014-05-05 13:17:58 -04:00
|
|
|
you need to be logged-in.
|
|
|
|
|
|
|
|
# Log-in
|
|
|
|
$ sudo docker login
|
|
|
|
Username:
|
|
|
|
..
|
|
|
|
|
|
|
|
# Push the image
|
|
|
|
# Format: sudo docker push <user-name>/<repository>
|
|
|
|
$ sudo docker push my/repo
|
|
|
|
The push refers to a repository [my/repo] (len: 1)
|
|
|
|
Sending image list
|
|
|
|
Pushing repository my/repo (1 tags)
|
|
|
|
..
|
|
|
|
|
|
|
|
## Using the MongoDB image
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
Using the MongoDB image we created, we can run one or more MongoDB instances
|
|
|
|
as daemon process(es).
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
# Basic way
|
|
|
|
# Usage: sudo docker run --name <name for container> -d <user-name>/<repository>
|
|
|
|
$ sudo docker run --name mongo_instance_001 -d my/repo
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
# Dockerized MongoDB, lean and mean!
|
|
|
|
# Usage: sudo docker run --name <name for container> -d <user-name>/<repository> --noprealloc --smallfiles
|
|
|
|
$ sudo docker run --name mongo_instance_001 -d my/repo --noprealloc --smallfiles
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
# Checking out the logs of a MongoDB container
|
|
|
|
# Usage: sudo docker logs <name for container>
|
|
|
|
$ sudo docker logs mongo_instance_001
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-05 13:17:58 -04:00
|
|
|
# Playing with MongoDB
|
|
|
|
# Usage: mongo --port <port you get from `docker ps`>
|
|
|
|
$ mongo --port 12345
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2014-05-21 17:05:19 -04:00
|
|
|
- [Linking containers](/userguide/dockerlinks)
|
|
|
|
- [Cross-host linking containers](/articles/ambassador_pattern_linking/)
|
2014-06-02 14:48:58 -04:00
|
|
|
- [Creating an Automated Build](/docker-io/builds/#automated-builds)
|