Check your Docker install
This guide assumes you have a working installation of Docker. To checkyour Docker install, run the following command:
# Check that you have a working install
$ sudo docker info
If you get docker: command not found
or something like/var/lib/docker/repositories: permission denied
you may have anincomplete Docker installation or insufficient privileges to accessDocker on your machine.
Please refer to Installationfor installation instructions.
Download a pre-built image
# Download an ubuntu image
$ sudo docker pull ubuntu
This will find the ubuntu
image by name onDocker Huband download it from Docker Hub to a localimage cache.
Note:When the image has successfully downloaded, you will see a 12 characterhash
539c0211cd76: Download complete
which is theshort form of the image ID. These short image IDs are the first 12characters of the full image ID - which can be found usingdocker inspect
ordocker images --no-trunc=true
If you're using OS X then you shouldn't use sudo
.
Running an interactive shell
# Run an interactive shell in the ubuntu image,
# allocate a tty, attach stdin and stdout
# To detach the tty without exiting the shell,
# use the escape sequence Ctrl-p + Ctrl-q
# note: This will continue to exist in a stopped state once exited (see "docker ps -a")
$ sudo docker run -i -t ubuntu /bin/bash
Bind Docker to another host/port or a Unix socket
Warning:Changing the default
docker
daemon binding to aTCP port or Unix docker user group will increase your security risksby allowing non-root users to gain root access on the host. Make sureyou control access todocker
. If you are bindingto a TCP port, anyone with access to that port has full Docker access;so it is not advisable on an open network.
With -H
it is possible to make the Docker daemon to listen on aspecific IP and port. By default, it will listen onunix:///var/run/docker.sock
to allow only local connections by theroot user. You could set it to 0.0.0.0:2375
or a specific host IPto give access to everybody, but that is not recommended becausethen it is trivial for someone to gain root access to the host where thedaemon is running.
Similarly, the Docker client can use -H
to connect to a custom port.
-H
accepts host and port assignment in the following format:
tcp://[host][:port]` or `unix://path
For example:
tcp://host:2375
-> TCP connection on host:2375unix://path/to/socket
-> Unix socket located atpath/to/socket
-H
, when empty, will default to the same value aswhen no -H
was passed in.
-H
also accepts short form for TCP bindings:
host[:port]` or `:port
Run Docker in daemon mode:
$ sudo <path to>/docker -H 0.0.0.0:5555 -d &
Download an ubuntu
image:
$ sudo docker -H :5555 pull ubuntu
You can use multiple -H
, for example, if you want to listen on bothTCP and a Unix socket
# Run docker in daemon mode
$ sudo <path to>/docker -H tcp://127.0.0.1:2375 -H unix:///var/run/docker.sock -d &
# Download an ubuntu image, use default Unix socket
$ sudo docker pull ubuntu
# OR use the TCP port
$ sudo docker -H tcp://127.0.0.1:2375 pull ubuntu
Starting a long-running worker process
# Start a very useful long-running process
$ JOB=$(sudo docker run -d ubuntu /bin/sh -c "while true; do echo Hello world; sleep 1; done")
# Collect the output of the job so far
$ sudo docker logs $JOB
# Kill the job
$ sudo docker kill $JOB
Listing containers
$ sudo docker ps # Lists only running containers
$ sudo docker ps -a # Lists all containers
Controlling containers
# Start a new container
$ JOB=$(sudo docker run -d ubuntu /bin/sh -c "while true; do echo Hello world; sleep 1; done")
# Stop the container
$ sudo docker stop $JOB
# Start the container
$ sudo docker start $JOB
# Restart the container
$ sudo docker restart $JOB
# SIGKILL a container
$ sudo docker kill $JOB
# Remove a container
$ sudo docker stop $JOB # Container must be stopped to remove it
$ sudo docker rm $JOB
Bind a service on a TCP port
# Bind port 4444 of this container, and tell netcat to listen on it
$ JOB=$(sudo docker run -d -p 4444 ubuntu:12.10 /bin/nc -l 4444)
# Which public port is NATed to my container?
$ PORT=$(sudo docker port $JOB 4444 | awk -F: '{ print $2 }')
# Connect to the public port
$ echo hello world | nc 127.0.0.1 $PORT
# Verify that the network connection worked
$ echo "Daemon received: $(sudo docker logs $JOB)"
Committing (saving) a container state
Save your containers state to an image, so the state can bere-used.
When you commit your container only the differences between the imagethe container was created from and the current state of the containerwill be stored (as a diff). See which images you already have using thedocker images
command.
# Commit your container to a new named image
$ sudo docker commit <container_id> <some_name>
# List your containers
$ sudo docker images
You now have an image state from which you can create new instances.
http://docs.docker.com/articles/basics/#running-an-interactive-shell