Moby Project - a collaborative project for the container ecosystem to assemble container-based systems
Go to file
Solomon Hykes 6bf4a10ed4 Merge branch 'master' of ssh://github.com/dotcloud/docker 2013-03-26 12:57:42 -07:00
auth Fix the rootPath for auth 2013-03-22 05:52:13 -07:00
contrib Merge pull request #74 from jpetazzo/contrib-install-sh 2013-03-13 21:30:45 -07:00
deb fix run-time dependency 2013-03-25 01:36:59 +02:00
docker Add a Debugf() helper and a -D (debug) flag to docker 2013-03-22 11:44:12 -07:00
docs Rephrased answer to Q4 in the FAQ 2013-03-26 12:34:23 -07:00
puppet Redirecting docker daemon stdout/stderr to /var/log/dockerd 2013-03-22 10:30:47 -05:00
rcli Add a Debugf() helper and a -D (debug) flag to docker 2013-03-22 11:44:12 -07:00
term Fixed issue with misplaced cursor after output 2013-03-26 07:10:31 -07:00
.gitignore Merge of docker-website into the docker documentation. 2013-03-25 19:52:52 -07:00
AUTHORS incorporate feedback from https://github.com/dotcloud/docker/issues/42 2013-03-26 09:17:44 -04:00
LICENSE Docker is now licensed under the Apache 2.0 license 2013-02-18 09:56:20 -08:00
NOTICE add reference to https://github.com/kr/pty in NOTICE 2013-02-19 20:55:26 -07:00
README.md Added missing 'docker pull' to first example 2013-03-26 12:52:11 -07:00
Vagrantfile vagrant; issue #113: normalize whitespaces 2013-03-21 22:26:18 -07:00
archive.go Folded graph/ back into main package 2013-03-21 17:47:23 -07:00
archive_test.go Folded graph/ back into main package 2013-03-21 17:47:23 -07:00
changes.go Folded graph/ back into main package 2013-03-21 17:47:23 -07:00
commands.go Re-enabled help for run command and added client-side error messages when arguments are missing 2013-03-26 08:31:26 -07:00
container.go Re-enabled help for run command and added client-side error messages when arguments are missing 2013-03-26 08:31:26 -07:00
container_test.go Moved image name into config. runtime.Create() now receives a single Config parameter 2013-03-23 12:39:09 -07:00
graph.go 'docker images' doesn't show all anonymous images by default - only anonymous heads 2013-03-23 17:03:30 -07:00
graph_test.go 'docker commit' records parent container id and command, in addition to parent image 2013-03-21 21:13:27 -07:00
image.go Generate full-size SHA256 IDs for images and containers 2013-03-23 19:33:00 -07:00
lxc_template.go remove executable bit from lxc_template.go 2013-03-26 16:36:49 +02:00
mount.go Folded graph/ back into main package 2013-03-21 17:47:23 -07:00
mount_darwin.go Folded graph/ back into main package 2013-03-21 17:47:23 -07:00
mount_linux.go Folded graph/ back into main package 2013-03-21 17:47:23 -07:00
network.go Merge pull request #138 from srid/handle-port-mapper-error 2013-03-24 10:27:03 -07:00
network_test.go Comply the tests with golang TIP 2013-03-21 10:31:02 -07:00
registry.go Improved error checking of 'docker pull' by printing body of HTTP error 2013-03-25 18:50:02 -07:00
runtime.go 'docker commit -m': optional commit message 2013-03-23 19:16:42 -07:00
runtime_test.go Unit tests fetch their base image with 'docker pull docker-ut' 2013-03-25 17:18:56 -07:00
state.go Moved HumanDuration() to the main package 2013-03-21 00:52:43 -07:00
sysinit.go Clean up 'container' environment variable injected by lxc-start 2013-03-23 19:11:00 -07:00
tags.go 'docker {history,ps,images}': show human-friendly image names when applicable 2013-03-22 19:22:06 -07:00
utils.go Improve the debug function 2013-03-25 01:29:01 -07:00
utils_test.go Initial commit 2013-01-18 16:13:39 -08:00

README.md

Docker: the Linux container runtime

Docker complements LXC with a high-level API which operates at the process level. It runs unix processes with strong guarantees of isolation and repeatability across servers.

Docker is a great building block for automating distributed systems: large-scale web deployments, database clusters, continuous deployment systems, private PaaS, service-oriented architectures, etc.

  • Heterogeneous payloads: any combination of binaries, libraries, configuration files, scripts, virtualenvs, jars, gems, tarballs, you name it. No more juggling between domain-specific tools. Docker can deploy and run them all.
  • Any server: docker can run on any x64 machine with a modern linux kernel - whether it's a laptop, a bare metal server or a VM. This makes it perfect for multi-cloud deployments.
  • Isolation: docker isolates processes from each other and from the underlying host, using lightweight containers.
  • Repeatability: because containers are isolated in their own filesystem, they behave the same regardless of where, when, and alongside what they run.

Notable features

  • Filesystem isolation: each process container runs in a completely separate root filesystem.
  • Resource isolation: system resources like cpu and memory can be allocated differently to each process container, using cgroups.
  • Network isolation: each process container runs in its own network namespace, with a virtual interface and IP address of its own.
  • Copy-on-write: root filesystems are created using copy-on-write, which makes deployment extremeley fast, memory-cheap and disk-cheap.
  • Logging: the standard streams (stdout/stderr/stdin) of each process container are collected and logged for real-time or batch retrieval.
  • Change management: changes to a container's filesystem can be committed into a new image and re-used to create more containers. No templating or manual configuration required.
  • Interactive shell: docker can allocate a pseudo-tty and attach to the standard input of any container, for example to run a throwaway interactive shell.

Under the hood

Under the hood, Docker is built on the following components:

  • The cgroup and namespacing capabilities of the Linux kernel;
  • AUFS, a powerful union filesystem with copy-on-write capabilities;
  • The Go programming language;
  • lxc, a set of convenience scripts to simplify the creation of linux containers.

Install instructions

Installing on Ubuntu 12.04 and 12.10

  1. Install dependencies:

    sudo apt-get install lxc wget bsdtar curl
    sudo apt-get install linux-image-extra-`uname -r`
    

    The linux-image-extra package is needed on standard Ubuntu EC2 AMIs in order to install the aufs kernel module.

  2. Install the latest docker binary:

    wget http://get.docker.io/builds/$(uname -s)/$(uname -m)/docker-master.tgz
    tar -xf docker-master.tgz
    
  3. Run your first container!

    cd docker-master
    sudo ./docker pull base
    sudo ./docker run -i -t base /bin/bash
    

    Consider adding docker to your PATH for simplicity.

Installing on other Linux distributions

Right now, the officially supported distributions are:

  • Ubuntu 12.04 (precise LTS)
  • Ubuntu 12.10 (quantal)

Docker probably works on other distributions featuring a recent kernel, the AUFS patch, and up-to-date lxc. However this has not been tested.

Some streamlined (but possibly outdated) installation paths' are available from the website: http://docker.io/documentation/

Usage examples

Running an interactive shell

# Download a base image
docker pull base

# Run an interactive shell in the base image,
# allocate a tty, attach stdin and stdout
docker run -i -t base /bin/bash

Starting a long-running worker process

# Run docker in daemon mode
(docker -d || echo "Docker daemon already running") &

# Start a very useful long-running process
JOB=$(docker run -d base /bin/sh -c "while true; do echo Hello world; sleep 1; done")

# Collect the output of the job so far
docker logs $JOB

# Kill the job
docker kill $JOB

Listing all running containers

docker ps

Expose a service on a TCP port

# Expose port 4444 of this container, and tell netcat to listen on it
JOB=$(docker run -d -p 4444 base /bin/nc -l -p 4444)

# Which public port is NATed to my container?
PORT=$(docker port $JOB 4444)

# Connect to the public port via the host's public address
echo hello world | nc $(hostname) $PORT

# Verify that the network connection worked
echo "Daemon received: $(docker logs $JOB)"

Contributing to Docker

Want to hack on Docker? Awesome! There are instructions to get you started on the website: http://docker.io/documentation/contributing/contributing.html

They are probably not perfect, please let us know if anything feels wrong or incomplete.

Note

We also keep the documentation in this repository. The website documentation is generated using sphinx using these sources. Please find it under docs/sources/ and read more about it https://github.com/dotcloud/docker/master/docs/README.md

Please feel free to fix / update the documentation and send us pull requests. More tutorials are also welcome.