2014-04-16 14:07:55 -04:00
% DOCKER(1) Docker User Manuals
% William Henry
% APRIL 2014
# NAME
docker \- Docker image and container command line interface
# SYNOPSIS
**docker** [OPTIONS] COMMAND [arg...]
# DESCRIPTION
**docker** has two distinct functions. It is used for starting the Docker
daemon and to run the CLI (i.e., to command the daemon to manage images,
2014-06-14 03:49:51 -04:00
containers etc.) So **docker** is both a server, as a daemon, and a client
2014-04-16 14:07:55 -04:00
to the daemon, through the CLI.
2014-06-14 03:49:51 -04:00
To run the Docker daemon you do not specify any of the commands listed below but
2014-04-16 14:07:55 -04:00
must specify the ** -d** option. The other options listed below are for the
daemon only.
The Docker CLI has over 30 commands. The commands are listed below and each has
2014-06-14 03:49:51 -04:00
its own man page which explain usage and arguments.
2014-04-16 14:07:55 -04:00
To see the man page for a command run **man docker <command>** .
# OPTIONS
2014-05-02 16:47:29 -04:00
**-D**=*true*|*false*
2014-04-16 14:07:55 -04:00
Enable debug mode. Default is false.
2014-10-15 17:14:12 -04:00
**--help**
Print usage statement
2014-06-03 15:44:20 -04:00
**-H**, ** --host**=[unix:///var/run/docker.sock]: tcp://[host:port] to bind or
2014-04-16 14:07:55 -04:00
unix://[/path/to/socket] to use.
2014-06-03 15:44:20 -04:00
The socket(s) to bind to in daemon mode specified using one or more
tcp://host:port, unix:///path/to/socket, fd://* or fd://socketfd.
2014-04-16 14:07:55 -04:00
**--api-enable-cors**=*true*|*false*
Enable CORS headers in the remote API. Default is false.
**-b**=""
Attach containers to a pre\-existing network bridge; use 'none' to disable container networking
**--bip**=""
Use the provided CIDR notation address for the dynamically created bridge (docker0); Mutually exclusive of \-b
**-d**=*true*|*false*
Enable daemon mode. Default is false.
**--dns**=""
Force Docker to use specific DNS servers
**-g**=""
Path to use as the root of the Docker runtime. Default is `/var/lib/docker` .
2014-07-21 15:30:21 -04:00
**--fixed-cidr**=""
2015-01-08 18:03:19 -05:00
IPv4 subnet for fixed IPs (e.g., 10.20.0.0/16); this subnet must be nested in the bridge subnet (which is defined by \-b or \-\-bip)
**--fixed-cidr-v6**=""
IPv6 subnet for global IPv6 addresses (e.g., 2a00:1450::/64)
2014-07-21 15:30:21 -04:00
2014-04-16 14:07:55 -04:00
**--icc**=*true*|*false*
2014-11-21 17:17:13 -05:00
Allow unrestricted inter\-container and Docker daemon host communication. If disabled, containers can still be linked together using ** --link** option (see **docker-run(1)** ). Default is true.
2014-04-16 14:07:55 -04:00
**--ip**=""
Default IP address to use when binding container ports. Default is `0.0.0.0` .
2015-01-08 18:03:19 -05:00
**--ip-forward**=*true*|*false*
Docker will enable IP forwarding. Default is true. If `--fixed-cidr-v6` is set. IPv6 forwarding will be activated, too. This may reject Router Advertisements and interfere with the host's existing IPv6 configuration. For more information please consult the documentation about "Advanced Networking - IPv6".
2014-09-16 23:00:15 -04:00
**--ip-masq**=*true*|*false*
Enable IP masquerading for bridge's IP range. Default is true.
2014-04-16 14:07:55 -04:00
**--iptables**=*true*|*false*
Disable Docker's addition of iptables rules. Default is true.
2015-01-08 18:03:19 -05:00
**--ipv6**=*true*|*false*
Enable IPv6 support. Default is false. Docker will create an IPv6-enabled bridge with address fe80::1 which will allow you to create IPv6-enabled containers. Use together with `--fixed-cidr-v6` to provide globally routable IPv6 addresses. IPv6 forwarding will be enabled if not used with `--ip-forward=false` . This may collide with your host's current IPv6 settings. For more information please consult the documentation about "Advanced Networking - IPv6".
2015-01-15 15:19:19 -05:00
**-l**, ** --log-level**="*debug*|*info*|*warn*|*error*|*fatal*""
2014-10-01 09:07:24 -04:00
Set the logging level. Default is `info` .
2014-11-20 13:36:05 -05:00
**--label**="[]"
2014-11-21 14:15:22 -05:00
Set key=value labels to the daemon (displayed in `docker info` )
2014-11-20 13:36:05 -05:00
2014-04-16 14:07:55 -04:00
**--mtu**=VALUE
Set the containers network mtu. Default is `1500` .
**-p**=""
Path to use for daemon PID file. Default is `/var/run/docker.pid`
2014-11-06 09:09:09 -05:00
**--registry-mirror**=< scheme > ://< host >
2014-07-18 14:48:19 -04:00
Prepend a registry mirror to be used for image pulls. May be specified multiple times.
2014-04-16 14:07:55 -04:00
**-s**=""
Force the Docker runtime to use a specific storage driver.
2014-11-06 10:58:07 -05:00
**--storage-opt**=[]
Set storage driver options. See STORAGE DRIVER OPTIONS.
2014-04-16 14:07:55 -04:00
**-v**=*true*|*false*
Print version information and quit. Default is false.
2014-05-13 05:17:42 -04:00
**--selinux-enabled**=*true*|*false*
2014-06-04 16:38:06 -04:00
Enable selinux support. Default is false. SELinux does not presently support the BTRFS storage driver.
2014-05-02 16:47:29 -04:00
2014-04-16 14:07:55 -04:00
# COMMANDS
**docker-attach(1)**
Attach to a running container
**docker-build(1)**
2014-05-08 09:11:17 -04:00
Build an image from a Dockerfile
2014-04-16 14:07:55 -04:00
**docker-commit(1)**
Create a new image from a container's changes
**docker-cp(1)**
2014-06-23 01:15:26 -04:00
Copy files/folders from a container's filesystem to the host at path
2014-04-16 14:07:55 -04:00
2014-08-19 21:10:42 -04:00
**docker-create(1)**
Create a new container
2014-04-16 14:07:55 -04:00
**docker-diff(1)**
Inspect changes on a container's filesystem
**docker-events(1)**
Get real time events from the server
2014-09-17 14:37:47 -04:00
**docker-exec(1)**
2014-09-17 14:36:51 -04:00
Run a command in a running container
2014-09-17 14:37:47 -04:00
2014-04-16 14:07:55 -04:00
**docker-export(1)**
Stream the contents of a container as a tar archive
**docker-history(1)**
Show the history of an image
**docker-images(1)**
List images
**docker-import(1)**
Create a new filesystem image from the contents of a tarball
**docker-info(1)**
Display system-wide information
**docker-inspect(1)**
2015-01-24 02:05:44 -05:00
Return low-level information on a container or image
2014-04-16 14:07:55 -04:00
**docker-kill(1)**
Kill a running container (which includes the wrapper process and everything
inside it)
**docker-load(1)**
Load an image from a tar archive
**docker-login(1)**
Register or Login to a Docker registry server
2014-06-27 02:52:36 -04:00
**docker-logout(1)**
Log the user out of a Docker registry server
2014-04-16 14:07:55 -04:00
**docker-logs(1)**
Fetch the logs of a container
2014-06-30 22:58:04 -04:00
**docker-pause(1)**
Pause all processes within a container
2014-04-16 14:07:55 -04:00
**docker-port(1)**
Lookup the public-facing port which is NAT-ed to PRIVATE_PORT
**docker-ps(1)**
List containers
**docker-pull(1)**
Pull an image or a repository from a Docker registry server
**docker-push(1)**
Push an image or a repository to a Docker registry server
**docker-restart(1)**
Restart a running container
**docker-rm(1)**
Remove one or more containers
**docker-rmi(1)**
Remove one or more images
**docker-run(1)**
Run a command in a new container
**docker-save(1)**
Save an image to a tar archive
**docker-search(1)**
Search for an image in the Docker index
**docker-start(1)**
Start a stopped container
**docker-stop(1)**
Stop a running container
**docker-tag(1)**
Tag an image into a repository
**docker-top(1)**
Lookup the running processes of a container
2014-06-30 22:58:04 -04:00
**docker-unpause(1)**
Unpause all processes within a container
**docker-version(1)**
2014-04-16 14:07:55 -04:00
Show the Docker version information
**docker-wait(1)**
Block until a container stops, then print its exit code
2014-11-06 10:58:07 -05:00
# STORAGE DRIVER OPTIONS
Options to storage backend can be specified with ** --storage-opt** flags. The
only backend which currently takes options is *devicemapper* . Therefore use these
flags with ** -s=**devicemapper.
Here is the list of *devicemapper* options:
#### dm.basesize
2014-11-20 19:36:37 -05:00
Specifies the size to use when creating the base device, which limits the size
of images and containers. The default value is 10G. Note, thin devices are
inherently "sparse", so a 10G device which is mostly empty doesn't use 10 GB
of space on the pool. However, the filesystem will use more space for the empty
case the larger the device is. **Warning** : This value affects the system-wide
"base" empty filesystem that may already be initialized and inherited by pulled
images.
2014-11-06 10:58:07 -05:00
#### dm.loopdatasize
2014-11-20 19:36:37 -05:00
Specifies the size to use when creating the loopback file for the "data"
device which is used for the thin pool. The default size is 100G. Note that the
file is sparse, so it will not initially take up this much space.
2014-11-06 10:58:07 -05:00
#### dm.loopmetadatasize
2014-11-20 19:36:37 -05:00
Specifies the size to use when creating the loopback file for the "metadadata"
device which is used for the thin pool. The default size is 2G. Note that the
file is sparse, so it will not initially take up this much space.
2014-11-06 10:58:07 -05:00
#### dm.fs
2014-11-20 19:36:37 -05:00
Specifies the filesystem type to use for the base device. The supported
options are "ext4" and "xfs". The default is "ext4"
2014-11-06 10:58:07 -05:00
#### dm.mkfsarg
2014-11-20 19:36:37 -05:00
Specifies extra mkfs arguments to be used when creating the base device.
2014-11-06 10:58:07 -05:00
#### dm.mountopt
2014-11-20 19:36:37 -05:00
Specifies extra mount options used when mounting the thin devices.
2014-11-06 10:58:07 -05:00
#### dm.datadev
2014-11-20 19:36:37 -05:00
Specifies a custom blockdevice to use for data for the thin pool.
2014-11-06 10:58:07 -05:00
2014-11-20 19:36:37 -05:00
If using a block device for device mapper storage, ideally both datadev and
metadatadev should be specified to completely avoid using the loopback device.
2014-11-06 10:58:07 -05:00
#### dm.metadatadev
2014-11-20 19:36:37 -05:00
Specifies a custom blockdevice to use for metadata for the thin pool.
2014-11-06 10:58:07 -05:00
2014-11-20 19:36:37 -05:00
For best performance the metadata should be on a different spindle than the
data, or even better on an SSD.
2014-11-06 10:58:07 -05:00
2014-11-20 19:36:37 -05:00
If setting up a new metadata pool it is required to be valid. This can be
achieved by zeroing the first 4k to indicate empty metadata, like this:
2014-11-06 10:58:07 -05:00
dd if=/dev/zero of=/dev/metadata_dev bs=4096 count=1
#### dm.blocksize
2014-11-20 19:36:37 -05:00
Specifies a custom blocksize to use for the thin pool. The default blocksize
is 64K.
2014-11-06 10:58:07 -05:00
#### dm.blkdiscard
2014-11-20 19:36:37 -05:00
Enables or disables the use of blkdiscard when removing devicemapper devices.
This is enabled by default (only) if using loopback devices and is required to
2015-02-04 19:57:33 -05:00
resparsify the loopback file on image/container removal.
2014-11-06 10:58:07 -05:00
2014-11-20 19:36:37 -05:00
Disabling this on loopback can lead to *much* faster container removal times,
2014-11-21 17:17:13 -05:00
but will prevent the space used in `/var/lib/docker` directory from being returned to
2014-11-20 19:36:37 -05:00
the system for other use when containers are removed.
2014-11-06 10:58:07 -05:00
2014-04-16 14:07:55 -04:00
# EXAMPLES
2014-11-20 19:36:37 -05:00
Launching docker daemon with *devicemapper* backend with particular block devices
for data and metadata:
2014-11-06 10:58:07 -05:00
docker -d -s=devicemapper \
--storage-opt dm.datadev=/dev/vdb \
--storage-opt dm.metadatadev=/dev/vdc \
--storage-opt dm.basesize=20G
2014-04-16 14:07:55 -04:00
2014-11-06 10:58:07 -05:00
#### Client
2014-11-20 19:36:37 -05:00
For specific client examples please see the man page for the specific Docker
command. For example:
2014-04-16 14:07:55 -04:00
man docker run
# HISTORY
2014-11-06 10:58:07 -05:00
April 2014, Originally compiled by William Henry (whenry at redhat dot com) based on docker.com source material and internal work.