2014-04-15 02:01:25 -04:00
|
|
|
page_title: Understanding Docker
|
|
|
|
page_description: Docker explained in depth
|
2014-05-18 12:52:41 -04:00
|
|
|
page_keywords: docker, introduction, documentation, about, technology, understanding
|
2014-04-15 02:01:25 -04:00
|
|
|
|
|
|
|
# Understanding Docker
|
2014-05-18 12:52:41 -04:00
|
|
|
**What is Docker?**
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
Docker is an open platform for developing, shipping, and running applications.
|
|
|
|
Docker is designed to deliver your applications faster. With Docker you can
|
|
|
|
separate your applications from your infrastructure AND treat your
|
|
|
|
infrastructure like a managed application. Docker helps you ship code faster,
|
|
|
|
test faster, deploy faster, and shorten the cycle between writing code and
|
|
|
|
running code.
|
|
|
|
|
|
|
|
Docker does this by combining a lightweight container virtualization platform
|
|
|
|
with workflows and tooling that help you manage and deploy your applications.
|
|
|
|
|
|
|
|
At its core, Docker provides a way to run almost any application securely
|
|
|
|
isolated in a container. The isolation and security allow you to run many
|
|
|
|
containers simultaneously on your host. The lightweight nature of containers,
|
|
|
|
which run without the extra load of a hypervisor, means you can get more out of
|
|
|
|
your hardware.
|
|
|
|
|
|
|
|
Surrounding the container virtualization are tooling and a platform which can
|
|
|
|
help you in several ways:
|
|
|
|
|
|
|
|
* getting your applications (and supporting components) into Docker containers
|
|
|
|
* distributing and shipping those containers to your teams for further development
|
|
|
|
and testing
|
|
|
|
* deploying those applications to your production environment,
|
|
|
|
whether it be in a local data center or the Cloud.
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-05-18 12:52:41 -04:00
|
|
|
## What can I use Docker for?
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
*Faster delivery of your applications*
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-05-18 12:52:41 -04:00
|
|
|
Docker is perfect for helping you with the development lifecycle. Docker
|
2014-06-07 18:20:43 -04:00
|
|
|
allows your developers to develop on local containers that contain your
|
|
|
|
applications and services. It can then integrate into a continuous integration and
|
|
|
|
deployment workflow.
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
For example, your developers write code locally and share their development stack via
|
|
|
|
Docker with their colleagues. When they are ready, they push their code and the
|
|
|
|
stack they are developing onto a test environment and execute any required
|
|
|
|
tests. From the testing environment, you can then push the Docker images into
|
|
|
|
production and deploy your code.
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
*Deploying and scaling more easily*
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
Docker's container-based platform allows for highly portable workloads. Docker
|
|
|
|
containers can run on a developer's local host, on physical or virtual machines
|
|
|
|
in a data center, or in the Cloud.
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
Docker's portability and lightweight nature also make dynamically managing
|
|
|
|
workloads easy. You can use Docker to quickly scale up or tear down applications
|
|
|
|
and services. Docker's speed means that scaling can be near real time.
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-07-03 17:02:40 -04:00
|
|
|
*Achieving higher density and running more workloads*
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
Docker is lightweight and fast. It provides a viable, cost-effective alternative
|
|
|
|
to hypervisor-based virtual machines. This is especially useful in high density
|
|
|
|
environments: for example, building your own Cloud or Platform-as-a-Service. But
|
|
|
|
it is also useful for small and medium deployments where you want to get more
|
|
|
|
out of the resources you have.
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-05-18 12:52:41 -04:00
|
|
|
## What are the major Docker components?
|
|
|
|
Docker has two major components:
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
|
2014-05-18 12:52:41 -04:00
|
|
|
* Docker: the open source container virtualization platform.
|
2014-06-01 16:48:04 -04:00
|
|
|
* [Docker Hub](https://hub.docker.com): our Software-as-a-Service
|
2014-05-18 12:52:41 -04:00
|
|
|
platform for sharing and managing Docker containers.
|
2014-04-15 02:01:25 -04:00
|
|
|
|
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
**Note:** Docker is licensed under the open source Apache 2.0 license.
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
## What is Docker's architecture?
|
|
|
|
Docker uses a client-server architecture. The Docker *client* talks to the
|
|
|
|
Docker *daemon*, which does the heavy lifting of building, running, and
|
|
|
|
distributing your Docker containers. Both the Docker client and the daemon *can*
|
|
|
|
run on the same system, or you can connect a Docker client to a remote Docker
|
2014-07-08 01:50:57 -04:00
|
|
|
daemon. The Docker client and daemon communicate via sockets or through a
|
2014-06-07 18:20:43 -04:00
|
|
|
RESTful API.
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-05-18 12:52:41 -04:00
|
|
|
![Docker Architecture Diagram](/article-img/architecture.svg)
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-05-18 12:52:41 -04:00
|
|
|
### The Docker daemon
|
2014-06-07 18:20:43 -04:00
|
|
|
As shown in the diagram above, the Docker daemon runs on a host machine. The
|
|
|
|
user does not directly interact with the daemon, but instead through the Docker
|
|
|
|
client.
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
### The Docker client
|
2014-05-18 12:52:41 -04:00
|
|
|
The Docker client, in the form of the `docker` binary, is the primary user
|
2014-06-07 18:20:43 -04:00
|
|
|
interface to Docker. It accepts commands from the user and communicates back and
|
|
|
|
forth with a Docker daemon.
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
### Inside Docker
|
|
|
|
To understand Docker's internals, you need to know about three components:
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
* Docker images.
|
|
|
|
* Docker registries.
|
2014-05-18 12:52:41 -04:00
|
|
|
* Docker containers.
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-05-18 12:52:41 -04:00
|
|
|
#### Docker images
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
A Docker image is a read-only template. For example, an image could contain an Ubuntu
|
|
|
|
operating system with Apache and your web application installed. Images are used to create
|
|
|
|
Docker containers. Docker provides a simple way to build new images or update existing
|
|
|
|
images, or you can download Docker images that other people have already created.
|
|
|
|
Docker images are the **build** component of Docker.
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-05-18 12:52:41 -04:00
|
|
|
#### Docker Registries
|
2014-06-07 18:20:43 -04:00
|
|
|
Docker registries hold images. These are public or private stores from which you upload
|
|
|
|
or download images. The public Docker registry is called
|
2014-07-01 20:30:25 -04:00
|
|
|
[Docker Hub](http://hub.docker.com). It provides a huge collection of existing
|
2014-06-07 18:20:43 -04:00
|
|
|
images for your use. These can be images you create yourself or you
|
|
|
|
can use images that others have previously created. Docker registries are the
|
|
|
|
**distribution** component of Docker.
|
|
|
|
|
|
|
|
####Docker containers
|
|
|
|
Docker containers are similar to a directory. A Docker container holds everything that
|
|
|
|
is needed for an application to run. Each container is created from a Docker
|
|
|
|
image. Docker containers can be run, started, stopped, moved, and deleted. Each
|
|
|
|
container is an isolated and secure application platform. Docker containers are the
|
|
|
|
**run** component of Docker.
|
|
|
|
|
|
|
|
##So how does Docker work?
|
|
|
|
So far, we've learned that:
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-05-18 12:52:41 -04:00
|
|
|
1. You can build Docker images that hold your applications.
|
|
|
|
2. You can create Docker containers from those Docker images to run your
|
|
|
|
applications.
|
|
|
|
3. You can share those Docker images via
|
2014-06-01 16:48:04 -04:00
|
|
|
[Docker Hub](https://hub.docker.com) or your own registry.
|
2014-05-18 12:52:41 -04:00
|
|
|
|
|
|
|
Let's look at how these elements combine together to make Docker work.
|
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
### How does a Docker Image work?
|
|
|
|
We've already seen that Docker images are read-only templates from which Docker
|
|
|
|
containers are launched. Each image consists of a series of layers. Docker
|
|
|
|
makes use of [union file systems](http://en.wikipedia.org/wiki/UnionFS) to
|
|
|
|
combine these layers into a single image. Union file systems allow files and
|
|
|
|
directories of separate file systems, known as branches, to be transparently
|
|
|
|
overlaid, forming a single coherent file system.
|
|
|
|
|
|
|
|
One of the reasons Docker is so lightweight is because of these layers. When you
|
|
|
|
change a Docker image—for example, update an application to a new version— a new layer
|
|
|
|
gets built. Thus, rather than replacing the whole image or entirely
|
|
|
|
rebuilding, as you may do with a virtual machine, only that layer is added or
|
|
|
|
updated. Now you don't need to distribute a whole new image, just the update,
|
|
|
|
making distributing Docker images faster and simpler.
|
|
|
|
|
|
|
|
Every image starts from a base image, for example `ubuntu`, a base Ubuntu image,
|
|
|
|
or `fedora`, a base Fedora image. You can also use images of your own as the
|
|
|
|
basis for a new image, for example if you have a base Apache image you could use
|
|
|
|
this as the base of all your web application images.
|
|
|
|
|
|
|
|
> **Note:** Docker usually gets these base images from
|
2014-07-01 20:30:25 -04:00
|
|
|
> [Docker Hub](https://hub.docker.com).
|
2014-08-18 15:31:37 -04:00
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
Docker images are then built from these base images using a simple, descriptive
|
|
|
|
set of steps we call *instructions*. Each instruction creates a new layer in our
|
|
|
|
image. Instructions include actions like:
|
|
|
|
|
2014-06-11 06:44:30 -04:00
|
|
|
* Run a command.
|
|
|
|
* Add a file or directory.
|
|
|
|
* Create an environment variable.
|
|
|
|
* What process to run when launching a container from this image.
|
2014-06-07 18:20:43 -04:00
|
|
|
|
|
|
|
These instructions are stored in a file called a `Dockerfile`. Docker reads this
|
|
|
|
`Dockerfile` when you request a build of an image, executes the instructions, and
|
|
|
|
returns a final image.
|
2014-05-18 12:52:41 -04:00
|
|
|
|
|
|
|
### How does a Docker registry work?
|
2014-06-07 18:20:43 -04:00
|
|
|
The Docker registry is the store for your Docker images. Once you build a Docker
|
2014-07-01 20:30:25 -04:00
|
|
|
image you can *push* it to a public registry [Docker Hub](https://hub.docker.com) or to
|
2014-06-07 18:20:43 -04:00
|
|
|
your own registry running behind your firewall.
|
2014-05-18 12:52:41 -04:00
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
Using the Docker client, you can search for already published images and then
|
|
|
|
pull them down to your Docker host to build containers from them.
|
2014-05-18 12:52:41 -04:00
|
|
|
|
2014-07-01 20:30:25 -04:00
|
|
|
[Docker Hub](https://hub.docker.com) provides both public and private storage
|
2014-06-07 18:20:43 -04:00
|
|
|
for images. Public storage is searchable and can be downloaded by anyone.
|
|
|
|
Private storage is excluded from search results and only you and your users can
|
|
|
|
pull images down and use them to build containers. You can [sign up for a storage plan
|
2014-07-01 20:30:25 -04:00
|
|
|
here](https://hub.docker.com/plans).
|
2014-05-18 12:52:41 -04:00
|
|
|
|
|
|
|
### How does a container work?
|
2014-06-07 18:20:43 -04:00
|
|
|
A container consists of an operating system, user-added files, and meta-data. As
|
|
|
|
we've seen, each container is built from an image. That image tells Docker
|
|
|
|
what the container holds, what process to run when the container is launched, and
|
|
|
|
a variety of other configuration data. The Docker image is read-only. When
|
|
|
|
Docker runs a container from an image, it adds a read-write layer on top of the
|
|
|
|
image (using a union file system as we saw earlier) in which your application can
|
|
|
|
then run.
|
2014-05-18 12:52:41 -04:00
|
|
|
|
|
|
|
### What happens when you run a container?
|
2014-06-07 18:20:43 -04:00
|
|
|
Either by using the `docker` binary or via the API, the Docker client tells the Docker
|
|
|
|
daemon to run a container.
|
2014-05-18 12:52:41 -04:00
|
|
|
|
2014-09-15 21:49:05 -04:00
|
|
|
$ sudo docker run -i -t ubuntu /bin/bash
|
2014-05-18 12:52:41 -04:00
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
Let's break down this command. The Docker client is launched using the `docker`
|
|
|
|
binary with the `run` option telling it to launch a new container. The bare
|
|
|
|
minimum the Docker client needs to tell the Docker daemon to run the container
|
|
|
|
is:
|
2014-05-18 12:52:41 -04:00
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
* What Docker image to build the container from, here `ubuntu`, a base Ubuntu
|
|
|
|
image;
|
2014-05-18 12:52:41 -04:00
|
|
|
* The command you want to run inside the container when it is launched,
|
2014-06-14 09:54:27 -04:00
|
|
|
here `/bin/bash`, to start the Bash shell inside the new container.
|
2014-06-07 18:20:43 -04:00
|
|
|
|
|
|
|
So what happens under the hood when we run this command?
|
|
|
|
|
|
|
|
In order, Docker does the following:
|
|
|
|
|
|
|
|
- **Pulls the `ubuntu` image:** Docker checks for the presence of the `ubuntu`
|
|
|
|
image and, if it doesn't exist locally on the host, then Docker downloads it from
|
2014-07-01 20:30:25 -04:00
|
|
|
[Docker Hub](https://hub.docker.com). If the image already exists, then Docker
|
2014-06-07 18:20:43 -04:00
|
|
|
uses it for the new container.
|
|
|
|
- **Creates a new container:** Once Docker has the image, it uses it to create a
|
|
|
|
container.
|
|
|
|
- **Allocates a filesystem and mounts a read-write _layer_:** The container is created in
|
|
|
|
the file system and a read-write layer is added to the image.
|
|
|
|
- **Allocates a network / bridge interface:** Creates a network interface that allows the
|
|
|
|
Docker container to talk to the local host.
|
|
|
|
- **Sets up an IP address:** Finds and attaches an available IP address from a pool.
|
|
|
|
- **Executes a process that you specify:** Runs your application, and;
|
|
|
|
- **Captures and provides application output:** Connects and logs standard input, outputs
|
|
|
|
and errors for you to see how your application is running.
|
|
|
|
|
|
|
|
You now have a running container! From here you can manage your container, interact with
|
|
|
|
your application and then, when finished, stop and remove your container.
|
2014-05-18 12:52:41 -04:00
|
|
|
|
|
|
|
## The underlying technology
|
|
|
|
Docker is written in Go and makes use of several Linux kernel features to
|
2014-06-07 18:20:43 -04:00
|
|
|
deliver the functionality we've seen.
|
2014-05-18 12:52:41 -04:00
|
|
|
|
|
|
|
### Namespaces
|
2014-06-07 18:20:43 -04:00
|
|
|
Docker takes advantage of a technology called `namespaces` to provide the
|
|
|
|
isolated workspace we call the *container*. When you run a container, Docker
|
|
|
|
creates a set of *namespaces* for that container.
|
2014-05-18 12:52:41 -04:00
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
This provides a layer of isolation: each aspect of a container runs in its own
|
|
|
|
namespace and does not have access outside it.
|
2014-05-18 12:52:41 -04:00
|
|
|
|
|
|
|
Some of the namespaces that Docker uses are:
|
|
|
|
|
2014-06-07 18:20:43 -04:00
|
|
|
- **The `pid` namespace:** Used for process isolation (PID: Process ID).
|
|
|
|
- **The `net` namespace:** Used for managing network interfaces (NET:
|
|
|
|
Networking).
|
|
|
|
- **The `ipc` namespace:** Used for managing access to IPC
|
|
|
|
resources (IPC: InterProcess Communication).
|
|
|
|
- **The `mnt` namespace:** Used for managing mount-points (MNT: Mount).
|
|
|
|
- **The `uts` namespace:** Used for isolating kernel and version identifiers. (UTS: Unix
|
|
|
|
Timesharing System).
|
2014-05-18 12:52:41 -04:00
|
|
|
|
|
|
|
### Control groups
|
2014-06-07 18:20:43 -04:00
|
|
|
Docker also makes use of another technology called `cgroups` or control groups.
|
|
|
|
A key to running applications in isolation is to have them only use the
|
|
|
|
resources you want. This ensures containers are good multi-tenant citizens on a
|
|
|
|
host. Control groups allow Docker to share available hardware resources to
|
|
|
|
containers and, if required, set up limits and constraints. For example,
|
|
|
|
limiting the memory available to a specific container.
|
2014-05-18 12:52:41 -04:00
|
|
|
|
|
|
|
### Union file systems
|
2014-06-07 18:20:43 -04:00
|
|
|
Union file systems, or UnionFS, are file systems that operate by creating layers,
|
|
|
|
making them very lightweight and fast. Docker uses union file systems to provide
|
|
|
|
the building blocks for containers. Docker can make use of several union file system variants
|
|
|
|
including: AUFS, btrfs, vfs, and DeviceMapper.
|
|
|
|
|
|
|
|
### Container format
|
|
|
|
Docker combines these components into a wrapper we call a container format. The
|
|
|
|
default container format is called `libcontainer`. Docker also supports
|
|
|
|
traditional Linux containers using [LXC](https://linuxcontainers.org/). In the
|
|
|
|
future, Docker may support other container formats, for example, by integrating with
|
|
|
|
BSD Jails or Solaris Zones.
|
2014-05-18 12:52:41 -04:00
|
|
|
|
|
|
|
## Next steps
|
|
|
|
### Installing Docker
|
2014-06-07 18:20:43 -04:00
|
|
|
Visit the [installation section](/installation/#installation).
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-05-21 17:05:19 -04:00
|
|
|
### The Docker User Guide
|
2014-06-07 18:20:43 -04:00
|
|
|
[Learn Docker in depth](/userguide/).
|
2014-04-15 02:01:25 -04:00
|
|
|
|
2014-05-18 12:52:41 -04:00
|
|
|
|