Use the Docker command line
Estimated reading time: 16 minutesdocker
To list available commands, either run docker with no parameters
or execute docker help:
$ docker
Usage: docker [OPTIONS] COMMAND [ARG...]
docker [ --help | -v | --version ]
A self-sufficient runtime for containers.
Options:
--config string Location of client config files (default "/root/.docker")
-c, --context string Name of the context to use to connect to the daemon (overrides DOCKER_HOST env var and default context set with "docker context use")
-D, --debug Enable debug mode
--help Print usage
-H, --host value Daemon socket(s) to connect to (default [])
-l, --log-level string Set the logging level ("debug"|"info"|"warn"|"error"|"fatal") (default "info")
--tls Use TLS; implied by --tlsverify
--tlscacert string Trust certs signed only by this CA (default "/root/.docker/ca.pem")
--tlscert string Path to TLS certificate file (default "/root/.docker/cert.pem")
--tlskey string Path to TLS key file (default "/root/.docker/key.pem")
--tlsverify Use TLS and verify the remote
-v, --version Print version information and quit
Commands:
attach Attach to a running container
# […]
Description
Depending on your Docker system configuration, you may be required to preface
each docker command with sudo. To avoid having to use sudo with the
docker command, your system administrator can create a Unix group called
docker and add users to it.
For more information about installing Docker or sudo configuration, refer to
the installation instructions for your operating system.
Environment variables
For easy reference, the following list of environment variables are supported
by the docker command line:
DOCKER_API_VERSIONThe API version to use (e.g.1.19)DOCKER_CONFIGThe location of your client configuration files.DOCKER_CERT_PATHThe location of your authentication keys.DOCKER_CLI_EXPERIMENTALEnable experimental features for the cli (e.g.enabledordisabled)DOCKER_DRIVERThe graph driver to use.DOCKER_HOSTDaemon socket to connect to.DOCKER_NOWARN_KERNEL_VERSIONPrevent warnings that your Linux kernel is unsuitable for Docker.DOCKER_RAMDISKIf set this will disable ‘pivot_root’.DOCKER_STACK_ORCHESTRATORConfigure the default orchestrator to use when usingdocker stackmanagement commands.DOCKER_TLSWhen set Docker uses TLS.DOCKER_TLS_VERIFYWhen set Docker uses TLS and verifies the remote.DOCKER_CONTENT_TRUSTWhen set Docker uses notary to sign and verify images. Equates to--disable-content-trust=falsefor build, create, pull, push, run.DOCKER_CONTENT_TRUST_SERVERThe URL of the Notary server to use. This defaults to the same URL as the registry.DOCKER_HIDE_LEGACY_COMMANDSWhen set, Docker hides “legacy” top-level commands (such asdocker rm, anddocker pull) indocker helpoutput, and onlyManagement commandsper object-type (e.g.,docker container) are printed. This may become the default in a future release, at which point this environment-variable is removed.DOCKER_TMPDIRLocation for temporary Docker files.DOCKER_CONTEXTSpecify the context to use (overrides DOCKER_HOST env var and default context set with “docker context use”)DOCKER_DEFAULT_PLATFORMSpecify the default platform for the commands that take the--platformflag.
Because Docker is developed using Go, you can also use any environment variables used by the Go runtime. In particular, you may find these useful:
HTTP_PROXYHTTPS_PROXYNO_PROXY
These Go environment variables are case-insensitive. See the Go specification for details on these variables.
Configuration files
By default, the Docker command line stores its configuration files in a
directory called .docker within your $HOME directory.
Docker manages most of the files in the configuration directory
and you should not modify them. However, you can modify the
config.json file to control certain aspects of how the docker
command behaves.
You can modify the docker command behavior using environment
variables or command-line options. You can also use options within
config.json to modify some of the same behavior. If an environment variable
and the --config flag are set, the flag takes precedent over the environment
variable. Command line options override environment variables and environment
variables override properties you specify in a config.json file.
Change the .docker directory
To specify a different directory, use the DOCKER_CONFIG
environment variable or the --config command line option. If both are
specified, then the --config option overrides the DOCKER_CONFIG environment
variable. The example below overrides the docker ps command using a
config.json file located in the ~/testconfigs/ directory.
$ docker --config ~/testconfigs/ ps
This flag only applies to whatever command is being ran. For persistent
configuration, you can set the DOCKER_CONFIG environment variable in your
shell (e.g. ~/.profile or ~/.bashrc). The example below sets the new
directory to be HOME/newdir/.docker.
echo export DOCKER_CONFIG=$HOME/newdir/.docker > ~/.profile
config.json properties
The config.json file stores a JSON encoding of several properties:
The property HttpHeaders specifies a set of headers to include in all messages
sent from the Docker client to the daemon. Docker does not try to interpret or
understand these header; it simply puts them into the messages. Docker does
not allow these headers to change any headers it sets for itself.
The property psFormat specifies the default format for docker ps output.
When the --format flag is not provided with the docker ps command,
Docker’s client uses this property. If this property is not set, the client
falls back to the default table format. For a list of supported formatting
directives, see the
Formatting section in the docker ps documentation
The property imagesFormat specifies the default format for docker images output.
When the --format flag is not provided with the docker images command,
Docker’s client uses this property. If this property is not set, the client
falls back to the default table format. For a list of supported formatting
directives, see the Formatting section in the docker images documentation
The property pluginsFormat specifies the default format for docker plugin ls output.
When the --format flag is not provided with the docker plugin ls command,
Docker’s client uses this property. If this property is not set, the client
falls back to the default table format. For a list of supported formatting
directives, see the Formatting section in the docker plugin ls documentation
The property servicesFormat specifies the default format for docker
service ls output. When the --format flag is not provided with the
docker service ls command, Docker’s client uses this property. If this
property is not set, the client falls back to the default json format. For a
list of supported formatting directives, see the
Formatting section in the docker service ls documentation
The property serviceInspectFormat specifies the default format for docker
service inspect output. When the --format flag is not provided with the
docker service inspect command, Docker’s client uses this property. If this
property is not set, the client falls back to the default json format. For a
list of supported formatting directives, see the
Formatting section in the docker service inspect documentation
The property statsFormat specifies the default format for docker
stats output. When the --format flag is not provided with the
docker stats command, Docker’s client uses this property. If this
property is not set, the client falls back to the default table
format. For a list of supported formatting directives, see
Formatting section in the docker stats documentation
The property secretFormat specifies the default format for docker
secret ls output. When the --format flag is not provided with the
docker secret ls command, Docker’s client uses this property. If this
property is not set, the client falls back to the default table
format. For a list of supported formatting directives, see
Formatting section in the docker secret ls documentation
The property nodesFormat specifies the default format for docker node ls output.
When the --format flag is not provided with the docker node ls command,
Docker’s client uses the value of nodesFormat. If the value of nodesFormat is not set,
the client uses the default table format. For a list of supported formatting
directives, see the Formatting section in the docker node ls documentation
The property configFormat specifies the default format for docker
config ls output. When the --format flag is not provided with the
docker config ls command, Docker’s client uses this property. If this
property is not set, the client falls back to the default table
format. For a list of supported formatting directives, see
Formatting section in the docker config ls documentation
The property credsStore specifies an external binary to serve as the default
credential store. When this property is set, docker login will attempt to
store credentials in the binary specified by docker-credential-<value> which
is visible on $PATH. If this property is not set, credentials will be stored
in the auths property of the config. For more information, see the
Credentials store section in the docker login documentation
The property credHelpers specifies a set of credential helpers to use
preferentially over credsStore or auths when storing and retrieving
credentials for specific registries. If this property is set, the binary
docker-credential-<value> will be used when storing or retrieving credentials
for a specific registry. For more information, see the
Credential helpers section in the docker login documentation
The property stackOrchestrator specifies the default orchestrator to use when
running docker stack management commands. Valid values are "swarm",
"kubernetes", and "all". This property can be overridden with the
DOCKER_STACK_ORCHESTRATOR environment variable, or the --orchestrator flag.
The property proxies specifies proxy environment variables to be automatically
set on containers, and set as --build-arg on containers used during docker build.
A "default" set of proxies can be configured, and will be used for any docker
daemon that the client connects to, or a configuration per host (docker daemon),
for example, “https://docker-daemon1.example.com”. The following properties can
be set for each environment:
httpProxy(sets the value ofHTTP_PROXYandhttp_proxy)httpsProxy(sets the value ofHTTPS_PROXYandhttps_proxy)ftpProxy(sets the value ofFTP_PROXYandftp_proxy)noProxy(sets the value ofNO_PROXYandno_proxy)
Warning: Proxy settings may contain sensitive information (for example, if the proxy requires authentication). Environment variables are stored as plain text in the container’s configuration, and as such can be inspected through the remote API or committed to an image when using
docker commit.
Once attached to a container, users detach from it and leave it running using
the using CTRL-p CTRL-q key sequence. This detach key sequence is customizable
using the detachKeys property. Specify a <sequence> value for the
property. The format of the <sequence> is a comma-separated list of either
a letter [a-Z], or the ctrl- combined with any of the following:
a-z(a single lowercase alpha character )@(at sign)[(left bracket)\\(two backward slashes)_(underscore)^(caret)
Your customization applies to all containers started in with your Docker client.
Users can override your custom or the default key sequence on a per-container
basis. To do this, the user specifies the --detach-keys flag with the docker
attach, docker exec, docker run or docker start command.
The property plugins contains settings specific to CLI plugins. The
key is the plugin name, while the value is a further map of options,
which are specific to that plugin.
Following is a sample config.json file:
{
"HttpHeaders": {
"MyHeader": "MyValue"
},
"psFormat": "table {{.ID}}\\t{{.Image}}\\t{{.Command}}\\t{{.Labels}}",
"imagesFormat": "table {{.ID}}\\t{{.Repository}}\\t{{.Tag}}\\t{{.CreatedAt}}",
"pluginsFormat": "table {{.ID}}\t{{.Name}}\t{{.Enabled}}",
"statsFormat": "table {{.Container}}\t{{.CPUPerc}}\t{{.MemUsage}}",
"servicesFormat": "table {{.ID}}\t{{.Name}}\t{{.Mode}}",
"secretFormat": "table {{.ID}}\t{{.Name}}\t{{.CreatedAt}}\t{{.UpdatedAt}}",
"configFormat": "table {{.ID}}\t{{.Name}}\t{{.CreatedAt}}\t{{.UpdatedAt}}",
"serviceInspectFormat": "pretty",
"nodesFormat": "table {{.ID}}\t{{.Hostname}}\t{{.Availability}}",
"detachKeys": "ctrl-e,e",
"credsStore": "secretservice",
"credHelpers": {
"awesomereg.example.org": "hip-star",
"unicorn.example.com": "vcbait"
},
"stackOrchestrator": "kubernetes",
"plugins": {
"plugin1": {
"option": "value"
},
"plugin2": {
"anotheroption": "anothervalue",
"athirdoption": "athirdvalue"
}
},
"proxies": {
"default": {
"httpProxy": "http://user:pass@example.com:3128",
"httpsProxy": "http://user:pass@example.com:3128",
"noProxy": "http://user:pass@example.com:3128",
"ftpProxy": "http://user:pass@example.com:3128"
},
"https://manager1.mycorp.example.com:2377": {
"httpProxy": "http://user:pass@example.com:3128",
"httpsProxy": "http://user:pass@example.com:3128"
},
}
}
Experimental features
Experimental features provide early access to future product functionality. These features are intended only for testing and feedback as they may change between releases without warning or can be removed entirely from a future release.
Experimental features must not be used in production environments.
To enable experimental features, edit the config.json file and set
experimental to enabled. The example below enables experimental features
in a config.json file that already enables a debug feature.
{
"experimental": "enabled",
"debug": true
}
You can also enable experimental features from the Docker Desktop menu. See the Docker Desktop Getting Started page for more information.
Notary
If using your own notary server and a self-signed certificate or an internal
Certificate Authority, you need to place the certificate at
tls/<registry_url>/ca.crt in your docker config directory.
Alternatively you can trust the certificate globally by adding it to your system’s list of root Certificate Authorities.
Examples
Display help text
To list the help on any command just execute the command, followed by the
--help option.
$ docker run --help
Usage: docker run [OPTIONS] IMAGE [COMMAND] [ARG...]
Run a command in a new container
Options:
--add-host value Add a custom host-to-IP mapping (host:ip) (default [])
-a, --attach value Attach to STDIN, STDOUT or STDERR (default [])
...
Option types
Single character command line options can be combined, so rather than
typing docker run -i -t --name test busybox sh,
you can write docker run -it --name test busybox sh.
Boolean
Boolean options take the form -d=false. The value you see in the help text is
the default value which is set if you do not specify that flag. If you
specify a Boolean flag without a value, this will set the flag to true,
irrespective of the default value.
For example, running docker run -d will set the value to true, so your
container will run in “detached” mode, in the background.
Options which default to true (e.g., docker build --rm=true) can only be
set to the non-default value by explicitly setting them to false:
$ docker build --rm=false .
Multi
You can specify options like -a=[] multiple times in a single command line,
for example in these commands:
$ docker run -a stdin -a stdout -i -t ubuntu /bin/bash
$ docker run -a stdin -a stdout -a stderr ubuntu /bin/ls
Sometimes, multiple options can call for a more complex value string as for
-v:
$ docker run -v /host:/container example/mysql
Note
Do not use the
-tand-a stderroptions together due to limitations in theptyimplementation. Allstderrinptymode simply goes tostdout.
Strings and Integers
Options like --name="" expect a string, and they
can only be specified once. Options like -c=0
expect an integer, and they can only be specified once.