Initial links

Docker-DCO-1.1-Signed-off-by: James Turnbull <james@lovedthanlost.net> (github: jamtur01)
This commit is contained in:
James Turnbull
2014-06-08 14:54:32 -07:00
parent c9f216d2fa
commit ef364f7e1f
40 changed files with 205 additions and 198 deletions
+7 -8
View File
@@ -1,15 +1,14 @@
page_title: Dockerizing MongoDB
page_description: Creating a Docker image with MongoDB pre-installed using a Dockerfile and sharing the image on Docker.io
page_description: Creating a Docker image with MongoDB pre-installed using a Dockerfile and sharing the image on Docker Hub
page_keywords: docker, dockerize, dockerizing, article, example, docker.io, platform, package, installation, networking, mongodb, containers, images, image, sharing, dockerfile, build, auto-building, virtualization, framework
# Dockerizing MongoDB
## Introduction
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.io registry](
https://index.docker.io) and share it with others!
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!
Using Docker and containers for deploying [MongoDB](https://www.mongodb.org/)
instances will bring several benefits, such as:
@@ -41,7 +40,7 @@ Although optional, it is handy to have comments at the beginning of a
> the *parent* of your *Dockerized MongoDB* image.
We will build our image using the latest version of Ubuntu from the
[Docker.io Ubuntu](https://index.docker.io/_/ubuntu/) repository.
[Docker Hub Ubuntu](https://registry.hub.docker.com/_/ubuntu/) repository.
# Format: FROM repository[:version]
FROM ubuntu:latest
@@ -109,10 +108,10 @@ experimenting, it is always a good practice to tag Docker images by passing the
Once this command is issued, Docker will go through the `Dockerfile` and build
the image. The final image will be tagged `my/repo`.
## Pushing the MongoDB image to Docker.io
## Pushing the MongoDB image to Docker Hub
All Docker image repositories can be hosted and shared on
[Docker.io](https://index.docker.io) with the `docker push` command. For this,
[Docker Hub](https://hub.docker.com) with the `docker push` command. For this,
you need to be logged-in.
# Log-in
+3 -3
View File
@@ -65,9 +65,9 @@ requires to build (this example uses Docker 0.3.4):
# DOCKER-VERSION 0.3.4
Next, define the parent image you want to use to build your own image on
top of. Here, we'll use [CentOS](https://index.docker.io/_/centos/)
(tag: `6.4`) available on the [Docker
index](https://index.docker.io/):
top of. Here, we'll use
[CentOS](https://registry.hub.docker.com/_/centos/) (tag: `6.4`)
available on the [Docker Hub](https://hub.docker.com/):
FROM centos:6.4
+1 -1
View File
@@ -11,7 +11,7 @@ page_keywords: docker, example, package installation, postgresql
## Installing PostgreSQL on Docker
Assuming there is no Docker image that suits your needs on the [Docker
Hub]( http://index.docker.io), you can create one yourself.
Hub](http://hub.docker.com), you can create one yourself.
Start by creating a new `Dockerfile`:
@@ -14,8 +14,8 @@ Create an empty file called `Dockerfile`:
$ touch Dockerfile
Next, define the parent image you want to use to build your image on top
of. We'll use [Ubuntu](https://index.docker.io/_/ubuntu/) (tag:
`latest`), which is available on [Docker Hub](http://index.docker.io):
of. We'll use [Ubuntu](https://registry.hub.docker.cm/_/ubuntu/) (tag:
`latest`), which is available on [Docker Hub](https://hub.docker.com):
# Riak
#