docker-cheat-sheet/README.md

539 lines
23 KiB
Markdown
Raw Normal View History

# Docker Cheat Sheet
2014-08-05 13:07:14 -07:00
2015-10-11 20:21:46 +03:00
NOTE: This used to be a gist that continually expanded. It's now a GitHub project because it's considerably easier for other people to edit, fix and expand on Docker using Github. Just click [README.md](https://github.com/wsargent/docker-cheat-sheet/blob/master/README.md), and then on the "writing pen" icon on the right to edit.
2014-08-05 13:07:14 -07:00
* [Why](#why)
* [Prerequisites](#prerequisites)
* [Installation](#installation)
* [Containers](#containers)
* [Images](#images)
2016-01-11 17:10:25 -08:00
* [Networks](#networks)
* [Registry and Repository](#registry--repository)
* [Dockerfile](#dockerfile)
* [Layers](#layers)
* [Links](#links)
* [Volumes](#volumes)
* [Exposing Ports](#exposing-ports)
* [Best Practices](#best-practices)
2015-10-02 12:26:49 -07:00
* [Security](#security)
* [Tips](#tips)
2014-08-05 13:07:14 -07:00
## Why
2014-10-22 12:24:18 -07:00
"With Docker, developers can build any app in any language using any toolchain. “Dockerized” apps are completely portable and can run anywhere - colleagues OS X and Windows laptops, QA servers running Ubuntu in the cloud, and production data center VMs running Red Hat.
Developers can get going quickly by starting with one of the 13,000+ apps available on Docker Hub. Docker manages and tracks changes and dependencies, making it easier for sysadmins to understand how the apps that developers build work. And with Docker Hub, developers can automate their build pipeline and share artifacts with collaborators through public or private repositories.
Docker helps developers build and ship higher-quality applications, faster." -- [What is Docker](https://www.docker.com/whatisdocker/#copy1)
2014-08-05 13:07:14 -07:00
2014-10-22 17:01:53 -02:00
## Prerequisites
2014-08-05 13:07:14 -07:00
2014-10-23 10:59:02 -07:00
I use [Oh My Zsh](https://github.com/robbyrussell/oh-my-zsh) with the [Docker plugin](https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins#docker) for autocompletion of docker commands. YMMV.
### Linux
2015-10-11 20:21:46 +03:00
The 3.10.x kernel is [the minimum requirement](https://docs.docker.com/installation/binaries/#check-kernel-dependencies) for Docker.
2014-10-23 10:59:02 -07:00
### MacOS
2014-10-22 12:14:09 -07:00
10.8 “Mountain Lion” or newer is required.
2014-08-05 13:07:14 -07:00
## Installation
### Linux
Quick and easy install script provided by Docker:
```
curl -sSL https://get.docker.com/ | sh
```
If you're not willing to run a random shell script, please see the [installation](https://docs.docker.com/installation/) instructions for your distribution.
2015-10-11 20:21:46 +03:00
If you are a complete Docker newbie, you should follow the [series of tutorials](https://docs.docker.com/linux/started/) now.
2015-09-23 19:09:15 -07:00
### Mac OS X
2014-08-05 13:07:14 -07:00
2015-10-11 20:21:46 +03:00
Download and install [Docker Toolbox](https://www.docker.com/toolbox). If that doesn't work, see the [installation instructions](https://docs.docker.com/installation/mac/).
2014-08-05 13:07:14 -07:00
Docker used to use boot2docker, but you should be using docker machine now. The Docker website has instructions on [how to upgrade](https://docs.docker.com/installation/mac/#migrate-from-boot2docker). If you have an existing docker instance, you can also install the [Docker Machine](https://docs.docker.com/machine/install-machine/) binaries directly.
2014-08-05 13:07:14 -07:00
2015-09-23 19:07:49 -07:00
Once you've installed Docker Toolbox, install a VM with Docker Machine using the VirtualBox provider:
2014-08-05 13:07:14 -07:00
```
docker-machine create --driver=virtualbox default
docker-machine ls
eval "$(docker-machine env default)"
2014-08-05 13:07:14 -07:00
```
Then start up a container:
```
docker run hello-world
2014-08-05 13:07:14 -07:00
```
That's it, you have a running Docker container.
2015-09-23 19:09:15 -07:00
2015-10-11 20:21:46 +03:00
If you are a complete Docker newbie, you should probably follow the [series of tutorials](https://docs.docker.com/mac/started/) now.
2014-08-05 13:07:14 -07:00
## Containers
2014-10-22 12:25:04 -07:00
[Your basic isolated Docker process](http://etherealmind.com/basics-docker-containers-hypervisors-coreos/). Containers are to Virtual Machines as threads are to processes. Or you can think of them as chroots on steroids.
2014-08-05 13:07:14 -07:00
### Lifecycle
* [`docker create`](https://docs.docker.com/reference/commandline/create) creates a container but does not start it.
* [`docker run`](https://docs.docker.com/reference/commandline/run) creates and starts a container in one operation.
* [`docker stop`](https://docs.docker.com/reference/commandline/stop) stops it.
* [`docker start`](https://docs.docker.com/reference/commandline/start) will start it again.
* [`docker restart`](https://docs.docker.com/reference/commandline/restart) restarts a container.
* [`docker rm`](https://docs.docker.com/reference/commandline/rm) deletes a container.
* [`docker kill`](https://docs.docker.com/reference/commandline/kill) sends a SIGKILL to a container.
* [`docker attach`](https://docs.docker.com/reference/commandline/attach) will connect to a running container.
* [`docker wait`](https://docs.docker.com/reference/commandline/wait) blocks until container stops.
2014-08-05 13:07:14 -07:00
2014-11-04 17:50:39 -08:00
If you want to run and then interact with a container, `docker start`, then spawn a shell as described in [Executing Commands](https://github.com/wsargent/docker-cheat-sheet/#executing-commands).
2014-08-05 13:07:14 -07:00
If you want a transient container, `docker run --rm` will remove the container after it stops.
If you want to remove also the volumes associated with the container, the deletion of the container must include the -v switch like in `docker rm -v`.
2014-08-05 13:07:14 -07:00
If you want to poke around in an image, `docker run -t -i <myimage> <myshell>` to open a tty.
If you want to poke around in a running container, `docker exec -t -i <mycontainer> <myshell>` to open a tty.
2014-10-22 12:28:24 -07:00
If you want to map a directory on the host to a docker container, `docker run -v $HOSTDIR:$DOCKERDIR`. Also see [Volumes](https://github.com/wsargent/docker-cheat-sheet/#volumes).
2014-08-05 13:07:14 -07:00
If you want to integrate a container with a [host process manager](https://docs.docker.com/articles/host_integration/), start the daemon with `-r=false` then use `docker start -a`.
2014-08-05 13:07:14 -07:00
If you want to expose container ports through the host, see the [exposing ports](#exposing-ports) section.
2014-08-05 13:07:14 -07:00
2014-11-04 17:50:39 -08:00
Restart policies on crashed docker instances are [covered here](http://container42.com/2014/09/30/docker-restart-policies/).
2014-08-05 13:07:14 -07:00
### Info
* [`docker ps`](https://docs.docker.com/reference/commandline/ps) shows running containers.
* [`docker logs`](https://docs.docker.com/reference/commandline/logs) gets logs from container.
* [`docker inspect`](https://docs.docker.com/reference/commandline/inspect) looks at all the info on a container (including IP address).
* [`docker events`](https://docs.docker.com/reference/commandline/events) gets events from container.
* [`docker port`](https://docs.docker.com/reference/commandline/port) shows public facing port of container.
* [`docker top`](https://docs.docker.com/reference/commandline/top) shows running processes in container.
* [`docker stats`](https://docs.docker.com/reference/commandline/stats) shows containers' resource usage statistics.
* [`docker diff`](https://docs.docker.com/reference/commandline/diff) shows changed files in the container's FS.
2014-08-05 13:07:14 -07:00
`docker ps -a` shows running and stopped containers.
### Import / Export
2015-10-11 20:21:46 +03:00
* [`docker cp`](https://docs.docker.com/reference/commandline/cp) copies files or folders between a container and the local filesystem..
* [`docker export`](https://docs.docker.com/reference/commandline/export) turns container filesystem into tarball archive stream to STDOUT.
2014-08-05 13:07:14 -07:00
2014-11-04 17:50:39 -08:00
### Executing Commands
* [`docker exec`](https://docs.docker.com/reference/commandline/exec) to execute a command in container.
2014-11-04 17:50:39 -08:00
To enter a running container, attach a new shell process to a running container called foo, use: `docker exec -it foo /bin/bash`.
2014-08-05 13:07:14 -07:00
## Images
2014-10-25 14:10:14 -07:00
Images are just [templates for docker containers](https://docs.docker.com/introduction/understanding-docker/#how-does-a-docker-image-work).
2014-08-05 13:07:14 -07:00
### Lifecycle
* [`docker images`](https://docs.docker.com/reference/commandline/images) shows all images.
* [`docker import`](https://docs.docker.com/reference/commandline/import) creates an image from a tarball.
* [`docker build`](https://docs.docker.com/reference/commandline/build) creates image from Dockerfile.
* [`docker commit`](https://docs.docker.com/reference/commandline/commit) creates image from a container.
* [`docker rmi`](https://docs.docker.com/reference/commandline/rmi) removes an image.
* [`docker load`](https://docs.docker.com/reference/commandline/load) loads an image from a tar archive as STDIN, including images and tags (as of 0.7).
* [`docker save`](https://docs.docker.com/reference/commandline/save) saves an image to a tar archive stream to STDOUT with all parent layers, tags & versions (as of 0.7).
2014-08-05 13:07:14 -07:00
### Info
* [`docker history`](https://docs.docker.com/reference/commandline/history) shows history of image.
* [`docker tag`](https://docs.docker.com/reference/commandline/tag) tags an image to a name (local or registry).
2014-08-05 13:07:14 -07:00
### Cleaning up
While you can use the `docker rmi` command to remove specific images, there's a tool called [docker-gc](https://github.com/spotify/docker-gc) that will clean up images that are no longer used by any containers in a safe manner.
2016-01-11 17:08:11 -08:00
## Networks
2016-01-11 17:11:01 -08:00
Docker has a [networks](https://docs.docker.com/engine/userguide/networking/dockernetworks/) feature. Not much is known about it, so this is a good place to expand the cheat sheet. There is a note saying that it's a good way to configure docker containers to talk to each other without using ports.
2016-01-11 17:08:11 -08:00
### Lifecycle
* [`docker network create`](https://docs.docker.com/engine/userguide/networking/work-with-networks/)
* [`docker network rm`](https://docs.docker.com/engine/userguide/networking/work-with-networks/)
### Info
* [`docker network ls`](https://docs.docker.com/engine/userguide/networking/work-with-networks/)
* [`docker network inspect`](https://docs.docker.com/engine/userguide/networking/work-with-networks/)
### Connection
* [`docker network connect`](https://docs.docker.com/engine/userguide/networking/work-with-networks/)
* [`docker network disconnect`](https://docs.docker.com/engine/userguide/networking/work-with-networks/)
2014-08-05 13:07:14 -07:00
## Registry & Repository
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](https://docs.docker.com/userguide/dockerrepos/).
2014-08-05 13:07:14 -07:00
Docker.com hosts its own [index](https://registry.hub.docker.com/) to a central registry which contains a large number of repositories. Having said that, the central docker registry [does not do a good job of verifying images](https://titanous.com/posts/docker-insecurity) and should be avoided if you're worried about security.
2014-08-05 13:07:14 -07:00
* [`docker login`](https://docs.docker.com/reference/commandline/login) to login to a registry.
* [`docker search`](https://docs.docker.com/reference/commandline/search) searches registry for image.
* [`docker pull`](https://docs.docker.com/reference/commandline/pull) pulls an image from registry to local machine.
* [`docker push`](https://docs.docker.com/reference/commandline/push) pushes an image to the registry from local machine.
2014-08-05 13:07:14 -07:00
2014-12-12 11:17:59 +06:00
### Run local registry
2015-10-11 20:21:46 +03:00
[Registry implementation](https://github.com/docker/docker-registry) has an official image for basic setup that can be launched with
2014-12-12 11:17:59 +06:00
[`docker run -p 5000:5000 registry`](https://github.com/docker/docker-registry#quick-start)
Note that this installation does not have any authorization controls. You may use option `-P -p 127.0.0.1:5000:5000` to limit connections to localhost only.
In order to push to this repository tag image with `repositoryHostName:5000/imageName` then push this tag.
2014-08-05 13:07:14 -07:00
## Dockerfile
[The configuration file](https://docs.docker.com/reference/builder/). Sets up a Docker container when you run `docker build` on it. Vastly preferable to `docker commit`. If you use [jEdit](http://jedit.org), I've put up a syntax highlighting module for [Dockerfile](https://github.com/wsargent/jedit-docker-mode) you can use. You may also like to try the [tools section](#tools).
2014-08-05 13:07:14 -07:00
### Instructions
* [.dockerignore](https://docs.docker.com/reference/builder/#the-dockerignore-file)
* [FROM](https://docs.docker.com/reference/builder/#from)
* [MAINTAINER](https://docs.docker.com/reference/builder/#maintainer)
* [RUN](https://docs.docker.com/reference/builder/#run)
* [CMD](https://docs.docker.com/reference/builder/#cmd)
* [EXPOSE](https://docs.docker.com/reference/builder/#expose)
* [ENV](https://docs.docker.com/reference/builder/#env)
* [ADD](https://docs.docker.com/reference/builder/#add)
* [COPY](https://docs.docker.com/reference/builder/#copy)
* [ENTRYPOINT](https://docs.docker.com/reference/builder/#entrypoint)
* [VOLUME](https://docs.docker.com/reference/builder/#volume)
* [USER](https://docs.docker.com/reference/builder/#user)
* [WORKDIR](https://docs.docker.com/reference/builder/#workdir)
* [ONBUILD](https://docs.docker.com/reference/builder/#onbuild)
2014-08-05 13:07:14 -07:00
### Tutorial
* [Flux7's Dockerfile Tutorial](http://flux7.com/blogs/docker/docker-tutorial-series-part-3-automation-is-the-word-using-dockerfile/)
## Layers
The versioned filesystem in Docker is based on layers. They're like [git commits or changesets for filesystems](https://docs.docker.com/terms/layer/).
2015-10-11 20:21:46 +03:00
Note that if you're using [aufs](https://en.wikipedia.org/wiki/Aufs) as your filesystem, Docker does not always remove data volumes containers layers when you delete a container! See [PR 8484](https://github.com/docker/docker/pull/8484) for more details.
2014-08-05 13:07:14 -07:00
## Links
2015-10-11 20:21:46 +03:00
Links are how Docker containers talk to each other [through TCP/IP ports](https://docs.docker.com/userguide/dockerlinks/). [Linking into Redis](https://docs.docker.com/examples/running_redis_service/) and [Atlassian](https://blogs.atlassian.com/2013/11/docker-all-the-things-at-atlassian-automation-and-wiring/) show worked examples. You can also (in 0.11) resolve [links by hostname](https://docs.docker.com/userguide/dockerlinks/#updating-the-etchosts-file).
2014-08-05 13:07:14 -07:00
NOTE: If you want containers to ONLY communicate with each other through links, start the docker daemon with `-icc=false` to disable inter process communication.
If you have a container with the name CONTAINER (specified by `docker run --name CONTAINER`) and in the Dockerfile, it has an exposed port:
2014-08-05 13:07:14 -07:00
```
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:
2014-08-05 13:07:14 -07:00
```
$ALIAS_PORT_1337_TCP_PORT
$ALIAS_PORT_1337_TCP_ADDR
```
And you can connect to it that way.
To delete links, use `docker rm --link `.
2015-10-11 20:21:46 +03:00
If you want to link across docker hosts then you should look at [Swarm](https://docs.docker.com/swarm/). This [link on stackoverflow](https://stackoverflow.com/questions/21283517/how-to-link-docker-services-across-hosts) provides some good information on different patterns for linking containers across docker hosts.
2015-03-04 17:03:42 +11:00
2014-08-05 13:07:14 -07:00
## Volumes
2015-10-11 20:21:46 +03:00
Docker volumes are [free-floating filesystems](https://docs.docker.com/userguide/dockervolumes/). They don't have to be connected to a particular container. You should use volumes mounted from [data-only containers](https://medium.com/@ramangupta/why-docker-data-containers-are-good-589b3c6c749e) for portability.
2014-08-05 13:07:14 -07:00
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.
You can mount them in several docker containers at once, using `docker run --volumes-from`.
2014-08-05 13:07:14 -07:00
Because volumes are isolated filesystems, they are often used to store state from computations between transient containers. That is, you can have a stateless and transient container run from a recipe, blow it away, and then have a second instance of the transient container pick up from where the last one left off.
2014-11-04 17:54:51 -08:00
See [advanced volumes](http://crosbymichael.com/advanced-docker-volumes.html) for more details. Container42 is [also helpful](http://container42.com/2014/11/03/docker-indepth-volumes/).
2014-08-05 13:07:14 -07:00
For an easy way to clean abandoned volumes, see [docker-cleanup-volumes](https://github.com/chadoe/docker-cleanup-volumes).
As of 1.9, there are [volume specific commands](http://docs.docker.com/engine/reference/commandline/volume_ls/) like create, ls, and rm. (Thus no need for the above script to clean abandoned volumes - see [delete dangling volumes](#delete-dangling-volumes) in the quick reference, below.)
2015-10-11 20:21:46 +03:00
As of 1.3, you can [map MacOS host directories as docker volumes](https://docs.docker.com/userguide/dockervolumes/#mount-a-host-directory-as-a-data-volume) through boot2docker:
2014-10-25 14:10:14 -07:00
```
docker run -v /Users/wsargent/myapp/src:/src
```
2015-01-28 10:13:53 -08:00
You can also use remote NFS volumes if you're [feeling brave](http://www.tech-d.net/2014/03/29/docker-quicktip-4-remote-volumes/).
2014-11-04 17:54:51 -08:00
2015-03-04 17:03:42 +11:00
You may also consider running data-only containers as described [here](http://container42.com/2013/12/16/persistent-volumes-with-docker-container-as-volume-pattern/) to provide some data portability.
2014-08-05 13:07:14 -07:00
## Exposing ports
Exposing incoming ports through the host container is [fiddly but doable](https://docs.docker.com/reference/run/#expose-incoming-ports).
2014-08-05 13:07:14 -07:00
2016-01-11 17:08:11 -08:00
This is done by mapping the container port to the host port (only using localhost interface) using `-p`:
2014-08-05 13:07:14 -07:00
```
docker run -p 127.0.0.1:$HOSTPORT:$CONTAINERPORT --name CONTAINER -t someimage
2014-08-05 13:07:14 -07:00
```
2016-01-11 17:08:11 -08:00
You can tell Docker that the container listens on the specified network ports at runtime by using [EXPOSE](https://docs.docker.com/reference/builder/#expose):
2014-08-05 13:07:14 -07:00
```
EXPOSE <CONTAINERPORT>
2014-08-05 13:07:14 -07:00
```
2016-01-11 17:08:11 -08:00
But note that EXPOSE does not expose the port itself, only `-p` will do that.
If you're running Docker in Virtualbox, you then need to forward the port there as well, using [forwarded_port](https://docs.vagrantup.com/v2/networking/forwarded_ports.html). It can be useful to define something in Vagrantfile to expose a range of ports so that you can dynamically map them:
2014-08-05 13:07:14 -07:00
```
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
...
(49000..49900).each do |port|
config.vm.network :forwarded_port, :host => port, :guest => port
end
2014-08-05 13:07:14 -07:00
...
end
```
If you forget what you mapped the port to on the host container, use `docker port` to show it:
```
docker port CONTAINER $CONTAINERPORT
```
2015-10-02 12:30:40 -07:00
### Examples
* [Examples](https://docs.docker.com/reference/builder/#dockerfile-examples)
* [Best practices for writing Dockerfiles](https://docs.docker.com/articles/dockerfile_best-practices/)
* [Michael Crosby](http://crosbymichael.com/) has some more [Dockerfiles best practices](http://crosbymichael.com/dockerfile-best-practices.html) / [take 2](http://crosbymichael.com/dockerfile-best-practices-take-2.html).
## Best Practices
This is where general Docker best practices and war stories go:
* [The Rabbit Hole of Using Docker in Automated Tests](http://gregoryszorc.com/blog/2014/10/16/the-rabbit-hole-of-using-docker-in-automated-tests/)
* [Bridget Kromhout](https://twitter.com/bridgetkromhout) has a useful blog post on [running Docker in production](http://sysadvent.blogspot.co.uk/2014/12/day-1-docker-in-production-reality-not.html) at Dramafever.
* There's also a best practices [blog post](http://developers.lyst.com/devops/2014/12/08/docker/) from Lyst.
* [A Docker Dev Environment in 24 Hours!](https://engineering.salesforceiq.com/2013/11/05/a-docker-dev-environment-in-24-hours-part-2-of-2.html)
2015-10-02 12:30:40 -07:00
* [Building a Development Environment With Docker](http://tersesystems.com/2013/11/20/building-a-development-environment-with-docker/)
* [Discourse in a Docker Container](http://samsaffron.com/archive/2013/11/07/discourse-in-a-docker-container)
## Security
2015-10-09 16:49:21 -07:00
This is where security tips about Docker go.
2015-10-02 12:30:40 -07:00
If you are in the `docker` group, you effectively [have root access](http://reventlov.com/advisories/using-the-docker-command-to-root-the-host).
Likewise, if you expose the docker unix socket to a container, you are giving the container [root access to the host](https://www.lvh.io/posts/dont-expose-the-docker-socket-not-even-to-a-container.html).
Docker image ids are [sensitive information](https://medium.com/@quayio/your-docker-image-ids-are-secrets-and-its-time-you-treated-them-that-way-f55e9f14c1a4) and should not be exposed to the outside world. Treat them like passwords.
2015-10-09 16:49:21 -07:00
See the [Docker Security Cheat Sheet](https://github.com/konstruktoid/Docker/blob/master/Security/CheatSheet.md) by [Thomas Sjögren](https://github.com/konstruktoid).
From the [Docker Security Cheat Sheet](http://container-solutions.com/content/uploads/2015/06/15.06.15_DockerCheatSheet_A2.pdf) (it's in PDF which makes it hard to use, so copying below) by [Container Solutions](http://container-solutions.com/is-docker-safe-for-production/):
Turn off interprocess communication with:
```
docker -d --icc=false --iptables
```
Set the container to be read-only:
```
docker run --read-only
```
Verify images with a hashsum:
```
docker pull debian@sha256:a25306f3850e1bd44541976aa7b5fd0a29be
```
Set volumes to be read only:
```
docker run -v $(pwd)/secrets:/secrets:ro debian
2015-10-09 16:49:21 -07:00
```
Set memory and CPU sharing:
```
docker -c 512 -mem 512m
```
Define and run a user in your Dockerfile so you don't run as root inside the container:
```
RUN groupadd -r user && useradd -r -g user user
USER user
```
2014-08-05 13:07:14 -07:00
## Tips
Sources:
* [15 Docker Tips in 5 minutes](http://sssslide.com/speakerdeck.com/bmorearty/15-docker-tips-in-5-minutes)
### Last Ids
```
alias dl='docker ps -l -q'
docker run ubuntu echo hello world
docker commit `dl` helloworld
```
### Commit with command (needs Dockerfile)
```
docker commit -run='{"Cmd":["postgres", "-too -many -opts"]}' `dl` postgres
```
### Get IP address
```
docker inspect `dl` | grep IPAddress | cut -d '"' -f 4
```
or
```
wget http://stedolan.github.io/jq/download/source/jq-1.3.tar.gz
tar xzvf jq-1.3.tar.gz
cd jq-1.3
./configure && make && sudo make install
docker inspect `dl` | jq -r '.[0].NetworkSettings.IPAddress'
```
or using a [go template](https://docs.docker.com/reference/commandline/inspect)
2014-08-05 13:07:14 -07:00
```
docker inspect -f '{{ .NetworkSettings.IPAddress }}' <container_name>
```
2014-08-27 21:56:30 +02:00
### Get port mapping
```
docker inspect -f '{{range $p, $conf := .NetworkSettings.Ports}} {{$p}} -> {{(index $conf 0).HostPort}} {{end}}' <containername>
```
2014-10-25 14:29:25 -07:00
### Find containers by regular expression
```
for i in $(docker ps -a | grep "REGEXP_PATTERN" | cut -f1 -d" "); do echo $i; done`
```
2014-08-05 13:07:14 -07:00
### Get Environment Settings
```
docker run --rm ubuntu env
2014-08-05 13:07:14 -07:00
```
2014-10-25 14:05:47 -07:00
### Kill running containers
```
docker kill $(docker ps -q)
```
2014-08-05 13:07:14 -07:00
### Delete old containers
```
docker ps -a | grep 'weeks ago' | awk '{print $1}' | xargs docker rm
```
### Delete stopped containers
```
docker rm -v `docker ps -a -q -f status=exited`
2014-08-05 13:07:14 -07:00
```
2014-10-25 14:05:47 -07:00
### Delete dangling images
```
docker rmi $(docker images -q -f dangling=true)
```
### Delete all images
```
docker rmi $(docker images -q)
```
### Delete dangling volumes
As of Docker 1.9:
```
docker volume rm $(docker volume ls -q -f dangling=true)
```
In 1.9.0, the filter `dangling=false` does _not_ work - it is ignored and will list all volumes.
2014-08-05 13:07:14 -07:00
### Show image dependencies
```
docker images -viz | dot -Tpng -o docker.png
```
2014-11-13 15:24:33 +01:00
2015-09-29 14:45:51 -07:00
### Slimming down Docker containers [Intercity Blog](http://bit.ly/1Wwo61N)
2015-01-11 17:56:48 +00:00
- Cleaning APT
```
RUN apt-get clean
RUN rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
```
- Flatten an image
```
ID=$(docker run -d image-name /bin/bash)
docker export $ID | docker import flat-image-name
```
- For backup
```
ID=$(docker run -d image-name /bin/bash)
(docker export $ID | gzip -c > image.tgz)
gzip -dc image.tgz | docker import - flat-image-name
```
### Monitor system resource utilization for running containers
To check the CPU, memory, and network i/o usage of a single container, you can use:
```
docker stats <container>
```
For all containers listed by id:
```
docker stats $(docker ps -q)
```
For all containers listed by name:
```
docker stats $(docker ps --format '{{.Names}}')
```