Why Should I Care (For Developers)
Use Homebrew.
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
Install VirtualBox and Vagrant using Brew Cask.
brew tap phinze/homebrew-cask
brew install brew-cask
brew cask install virtualbox
brew cask install vagrant
We use the pre-built vagrant box: http://blog.phusion.nl/2013/11/08/docker-friendly-vagrant-boxes/
mkdir mydockerbox
cd mydockerbox
vagrant init docker https://oss-binaries.phusionpassenger.com/vagrant/boxes/ubuntu-12.04.3-amd64-vbox.box   
vagrant up
vagrant ssh
In the Vagrant:
sudo su -
sh -c "curl https://get.docker.io/gpg | apt-key add -"
sh -c "echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list"
apt-get update
apt-get install -y lxc-docker
Verify:
docker run -i -t ubuntu /bin/bash
That's it, you have a running Docker container.
Your basic isolated Docker process. Containers are to Virtual Machines as threads are to processes. Or you can think of them as chroots on steroids.
Some common misconceptions it's worth correcting:
- Containers are not transient.
docker rundoesn't do what you think.- Containers are not limited to running a single command or process. It's just encouraged.
- docker runcreates a container.
- docker stopstops it.
- docker startwill start it again.
- docker restartrestarts a container.
- docker rmdeletes a container.
- docker attachwill connect to a running container.
- docker waitblocks until container stops.
If you want to interact with a container,
docker ps -ato see the list, thendocker startanddocker attachto get in.
- docker psshows running containers.
- docker ps -ashows running and stopped containers.
- docker inspectlooks at all the info on a container (including IP address).
- docker logsgets logs from container.
- docker eventsgets events from container.
- docker portshows public facing port of container.
- docker topshows running processes in container.
- docker cpcopies into a container.
- docker exportturns container fs into tarball.
Images are just templates for docker containers.
- docker importcreates an image from a tarball.
- docker buildcreates image from Dockerfile.
- docker commitcreates image from a container.
- docker rmiremoves an image.
- docker insertinserts a file from URL into image
docker importanddocker commitonly set up the filesystem, not Dockerfile info like CMD or ENTRYPOINT or EXPOSE. See bug.
- docker imagesshows all images
- docker historyshows history of image
- docker tagtags an image to a name (local or registry)
A repository is a hosted collection of tagged images that together create the file system for a container.
A registry is a host -- a server that stores repositories and provides an HTTP API for managing the uploading and downloading of repositories.
Docker.io hosts its own index to a central registry which contains a large number of repositories.
- docker searchsearches registry for image
- docker pullpulls an image from registry to local machine
- docker pushpushes an image to the registry from local machine.
Best to look at http://github.com/wsargent/docker-devenv and the best practices for more details.
The filesystem in Docker is based on layers. They're like git commits or changesets for filesystems.
Links are how Docker containers talk to each other. Linking into Redis is the only real example.
If you have a docker container with the name CONTAINER (specified by docker run -name CONTAINER) and in the Dockerfile, it has an exposed port:
EXPOSE 1337
Then if we create another container called LINKED like so:
docker run -d -link CONTAINER:ALIAS -name LINKED user/wordpress
Then the exposed ports and aliases of CONTAINER will show up in LINKED with the following environment variables:
$ALIAS_PORT_1337_TCP_PORT
$ALIAS_PORT_1337_TCP_ADDR
And you can connect to it that way.
Docker volumes are free-floating filesystems. They don't have to be connected to a particular container.
Volumes are useful in situations where you can't use links (which are TCP/IP only). For instance, if you need to have two docker instances communicate by leaving stuff on the filesystem.
If you just want to map a directory on the host to a docker container, use
docker run -v /myhost/dir:/docker/dir my_image
You can mount them in several docker containers at once, using docker run -volume-from
See advanced volumes for more details.