2015-06-07 23:07:20 -04:00
|
|
|
<!--[metadata]>
|
|
|
|
+++
|
2015-06-21 16:41:38 -04:00
|
|
|
title = "Using the command line"
|
2015-06-07 23:07:20 -04:00
|
|
|
description = "Docker's CLI command description and usage"
|
|
|
|
keywords = ["Docker, Docker documentation, CLI, command line"]
|
|
|
|
[menu.main]
|
2015-06-21 16:41:38 -04:00
|
|
|
parent = "smn_cli"
|
2015-06-07 23:07:20 -04:00
|
|
|
+++
|
|
|
|
<![end-metadata]-->
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2015-06-21 16:41:38 -04:00
|
|
|
# Using the command line
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2015-04-28 11:00:18 -04:00
|
|
|
> **Note:** If you are using a remote Docker daemon, such as Boot2Docker,
|
2015-06-16 09:04:13 -04:00
|
|
|
> then _do not_ type the `sudo` before the `docker` commands shown in the
|
|
|
|
> documentation's examples.
|
2014-12-29 03:19:42 -05:00
|
|
|
|
2014-04-23 16:48:28 -04:00
|
|
|
To list available commands, either run `docker` with no parameters
|
|
|
|
or execute `docker help`:
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker
|
2014-04-15 20:53:12 -04:00
|
|
|
Usage: docker [OPTIONS] COMMAND [arg...]
|
2014-04-23 21:09:27 -04:00
|
|
|
-H, --host=[]: 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-15 20:53:12 -04:00
|
|
|
|
2014-11-17 19:41:54 -05:00
|
|
|
A self-sufficient runtime for Linux containers.
|
2014-04-15 20:53:12 -04:00
|
|
|
|
|
|
|
...
|
2015-05-27 13:38:29 -04:00
|
|
|
|
|
|
|
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
|
2015-03-26 14:12:37 -04:00
|
|
|
`docker` and add users to it.
|
|
|
|
|
|
|
|
For more information about installing Docker or `sudo` configuration, refer to
|
|
|
|
the [installation](/installation) instructions for your operating system.
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2015-04-21 11:50:09 -04:00
|
|
|
## Environment variables
|
2015-03-24 13:08:37 -04:00
|
|
|
|
|
|
|
For easy reference, the following list of environment variables are supported
|
|
|
|
by the `docker` command line:
|
|
|
|
|
2015-04-28 11:00:18 -04:00
|
|
|
* `DOCKER_CONFIG` The location of your client configuration files.
|
2015-03-24 13:08:37 -04:00
|
|
|
* `DOCKER_CERT_PATH` The location of your authentication keys.
|
|
|
|
* `DOCKER_DRIVER` The graph driver to use.
|
|
|
|
* `DOCKER_HOST` Daemon socket to connect to.
|
2015-05-27 13:38:29 -04:00
|
|
|
* `DOCKER_NOWARN_KERNEL_VERSION` Prevent warnings that your Linux kernel is
|
|
|
|
unsuitable for Docker.
|
2015-03-24 13:08:37 -04:00
|
|
|
* `DOCKER_RAMDISK` If set this will disable 'pivot_root'.
|
|
|
|
* `DOCKER_TLS_VERIFY` When set Docker uses TLS and verifies the remote.
|
|
|
|
* `DOCKER_TMPDIR` Location for temporary Docker files.
|
|
|
|
|
|
|
|
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_PROXY`
|
|
|
|
* `HTTPS_PROXY`
|
|
|
|
* `NO_PROXY`
|
|
|
|
|
|
|
|
These Go environment variables are case-insensitive. See the
|
|
|
|
[Go specification](http://golang.org/pkg/net/http/) for details on these
|
|
|
|
variables.
|
|
|
|
|
2015-04-21 11:50:09 -04:00
|
|
|
## Configuration files
|
2015-04-01 18:39:37 -04:00
|
|
|
|
2015-04-28 11:00:18 -04:00
|
|
|
By default, the Docker command line stores its configuration files in a
|
|
|
|
directory called `.docker` within your `HOME` directory. However, you can
|
|
|
|
specify a different location via 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.
|
|
|
|
For example:
|
|
|
|
|
|
|
|
docker --config ~/testconfigs/ ps
|
|
|
|
|
|
|
|
Instructs Docker to use the configuration files in your `~/testconfigs/`
|
|
|
|
directory when running the `ps` command.
|
|
|
|
|
|
|
|
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`
|
2015-04-01 18:39:37 -04:00
|
|
|
command behaves.
|
|
|
|
|
2015-05-27 13:38:29 -04:00
|
|
|
Currently, 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. When using these
|
|
|
|
mechanisms, you must keep in mind the order of precedence among them. Command
|
|
|
|
line options override environment variables and environment variables override
|
2015-04-01 18:39:37 -04:00
|
|
|
properties you specify in a `config.json` file.
|
|
|
|
|
|
|
|
The `config.json` file stores a JSON encoding of a single `HttpHeaders`
|
2015-05-27 13:38:29 -04:00
|
|
|
property. The property 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.
|
2015-04-01 18:39:37 -04:00
|
|
|
|
|
|
|
Following is a sample `config.json` file:
|
|
|
|
|
|
|
|
{
|
|
|
|
"HttpHeaders: {
|
|
|
|
"MyHeader": "MyValue"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-15 17:14:12 -04:00
|
|
|
## Help
|
2015-05-27 13:38:29 -04:00
|
|
|
|
|
|
|
To list the help on any command just execute the command, followed by the
|
|
|
|
`--help` option.
|
2014-10-15 17:14:12 -04:00
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker run --help
|
2014-10-15 17:14:12 -04:00
|
|
|
|
|
|
|
Usage: docker run [OPTIONS] IMAGE [COMMAND] [ARG...]
|
|
|
|
|
|
|
|
Run a command in a new container
|
|
|
|
|
2015-03-03 12:04:06 -05:00
|
|
|
-a, --attach=[] Attach to STDIN, STDOUT or STDERR
|
2014-10-15 17:14:12 -04:00
|
|
|
-c, --cpu-shares=0 CPU shares (relative weight)
|
|
|
|
...
|
|
|
|
|
2014-04-15 20:53:12 -04:00
|
|
|
## Option types
|
|
|
|
|
2015-02-03 22:36:52 -05:00
|
|
|
Single character command line options can be combined, so rather than
|
2015-02-27 09:45:37 -05:00
|
|
|
typing `docker run -i -t --name test busybox sh`,
|
|
|
|
you can write `docker run -it --name test busybox sh`.
|
2014-04-15 20:53:12 -04:00
|
|
|
|
|
|
|
### Boolean
|
|
|
|
|
2015-05-27 13:38:29 -04:00
|
|
|
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.
|
2015-02-03 22:36:52 -05:00
|
|
|
|
2015-05-27 13:38:29 -04:00
|
|
|
For example, running `docker run -d` will set the value to `true`, so your
|
|
|
|
container **will** run in "detached" mode, in the background.
|
2015-02-03 22:36:52 -05:00
|
|
|
|
2015-05-27 13:38:29 -04:00
|
|
|
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`:
|
2015-02-03 22:36:52 -05:00
|
|
|
|
|
|
|
$ docker build --rm=false .
|
2014-04-15 20:53:12 -04:00
|
|
|
|
|
|
|
### Multi
|
|
|
|
|
2015-04-07 16:25:48 -04:00
|
|
|
You can specify options like `-a=[]` multiple times in a single command line,
|
|
|
|
for example in these commands:
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2015-04-07 16:25:48 -04:00
|
|
|
$ docker run -a stdin -a stdout -i -t ubuntu /bin/bash
|
|
|
|
$ docker run -a stdin -a stdout -a stderr ubuntu /bin/ls
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2015-05-27 13:38:29 -04:00
|
|
|
Sometimes, multiple options can call for a more complex value string as for
|
|
|
|
`-v`:
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker run -v /host:/container example/mysql
|
2014-04-15 20:53:12 -04:00
|
|
|
|
2015-05-27 13:38:29 -04:00
|
|
|
> **Note:**
|
|
|
|
> Do not use the `-t` and `-a stderr` options together due to
|
|
|
|
> limitations in the `pty` implementation. All `stderr` in `pty` mode
|
|
|
|
> simply goes to `stdout`.
|
2015-04-07 16:25:48 -04:00
|
|
|
|
2014-04-15 20:53:12 -04:00
|
|
|
### 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.
|