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...]
|
|
|
|
|
2015-11-09 20:33:55 -05:00
|
|
|
**docker** daemon [--help|...]
|
2015-09-17 10:07:22 -04:00
|
|
|
|
2015-11-09 20:33:55 -05:00
|
|
|
**docker** [--help|-v|--version]
|
2015-09-17 10:07:22 -04:00
|
|
|
|
2014-04-16 14:07:55 -04:00
|
|
|
# DESCRIPTION
|
2016-04-28 02:55:22 -04:00
|
|
|
is a client for interacting with the daemon (see **dockerd(8)**) through the CLI.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
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
|
2015-08-10 10:07:50 -04:00
|
|
|
**--help**
|
2014-10-15 17:14:12 -04:00
|
|
|
Print usage statement
|
|
|
|
|
2015-04-28 11:00:18 -04:00
|
|
|
**--config**=""
|
|
|
|
Specifies the location of the Docker client configuration files. The default is '~/.docker'.
|
|
|
|
|
2015-03-13 03:28:09 -04:00
|
|
|
**-D**, **--debug**=*true*|*false*
|
|
|
|
Enable debug mode. Default is false.
|
|
|
|
|
2015-11-09 20:33:55 -05:00
|
|
|
**-H**, **--host**=[*unix:///var/run/docker.sock*]: tcp://[host]:[port][path] to bind or
|
2015-03-13 03:28:09 -04:00
|
|
|
unix://[/path/to/socket] to use.
|
|
|
|
The socket(s) to bind to in daemon mode specified using one or more
|
2015-08-21 09:28:49 -04:00
|
|
|
tcp://host:port/path, unix:///path/to/socket, fd://* or fd://socketfd.
|
|
|
|
If the tcp port is not specified, then it will default to either `2375` when
|
|
|
|
`--tls` is off, or `2376` when `--tls` is on, or `--tlsverify` is specified.
|
2015-03-13 03:28:09 -04:00
|
|
|
|
2015-11-09 20:33:55 -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`.
|
|
|
|
|
2015-08-03 12:36:37 -04:00
|
|
|
**--tls**=*true*|*false*
|
2015-03-13 03:28:09 -04:00
|
|
|
Use TLS; implied by --tlsverify. Default is false.
|
|
|
|
|
2015-11-09 20:33:55 -05:00
|
|
|
**--tlscacert**=*~/.docker/ca.pem*
|
2015-08-03 12:36:37 -04:00
|
|
|
Trust certs signed only by this CA.
|
|
|
|
|
2015-11-09 20:33:55 -05:00
|
|
|
**--tlscert**=*~/.docker/cert.pem*
|
2015-08-03 12:36:37 -04:00
|
|
|
Path to TLS certificate file.
|
|
|
|
|
2015-11-09 20:33:55 -05:00
|
|
|
**--tlskey**=*~/.docker/key.pem*
|
2015-08-03 12:36:37 -04:00
|
|
|
Path to TLS key file.
|
|
|
|
|
|
|
|
**--tlsverify**=*true*|*false*
|
2015-03-13 03:28:09 -04:00
|
|
|
Use TLS and verify the remote (daemon: verify client, client: verify daemon).
|
|
|
|
Default is false.
|
|
|
|
|
|
|
|
**-v**, **--version**=*true*|*false*
|
2014-04-16 14:07:55 -04:00
|
|
|
Print version information and quit. Default is false.
|
|
|
|
|
|
|
|
# COMMANDS
|
2015-04-27 08:54:51 -04:00
|
|
|
**attach**
|
2014-04-16 14:07:55 -04:00
|
|
|
Attach to a running container
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-attach(1)** for full documentation on the **attach** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**build**
|
2014-05-08 09:11:17 -04:00
|
|
|
Build an image from a Dockerfile
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-build(1)** for full documentation on the **build** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**commit**
|
2014-04-16 14:07:55 -04:00
|
|
|
Create a new image from a container's changes
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-commit(1)** for full documentation on the **commit** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**cp**
|
2015-09-20 06:02:28 -04:00
|
|
|
Copy files/folders between a container and the local filesystem
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-cp(1)** for full documentation on the **cp** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**create**
|
2014-08-19 21:10:42 -04:00
|
|
|
Create a new container
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-create(1)** for full documentation on the **create** command.
|
2014-08-19 21:10:42 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**diff**
|
2014-04-16 14:07:55 -04:00
|
|
|
Inspect changes on a container's filesystem
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-diff(1)** for full documentation on the **diff** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**events**
|
2014-04-16 14:07:55 -04:00
|
|
|
Get real time events from the server
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-events(1)** for full documentation on the **events** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**exec**
|
2014-09-17 14:36:51 -04:00
|
|
|
Run a command in a running container
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-exec(1)** for full documentation on the **exec** command.
|
2014-09-17 14:37:47 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**export**
|
2014-04-16 14:07:55 -04:00
|
|
|
Stream the contents of a container as a tar archive
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-export(1)** for full documentation on the **export** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**history**
|
2014-04-16 14:07:55 -04:00
|
|
|
Show the history of an image
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-history(1)** for full documentation on the **history** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**images**
|
2014-04-16 14:07:55 -04:00
|
|
|
List images
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-images(1)** for full documentation on the **images** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**import**
|
2014-04-16 14:07:55 -04:00
|
|
|
Create a new filesystem image from the contents of a tarball
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-import(1)** for full documentation on the **import** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**info**
|
2014-04-16 14:07:55 -04:00
|
|
|
Display system-wide information
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-info(1)** for full documentation on the **info** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**inspect**
|
2015-01-24 02:05:44 -05:00
|
|
|
Return low-level information on a container or image
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-inspect(1)** for full documentation on the **inspect** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**kill**
|
2014-04-16 14:07:55 -04:00
|
|
|
Kill a running container (which includes the wrapper process and everything
|
|
|
|
inside it)
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-kill(1)** for full documentation on the **kill** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**load**
|
2014-04-16 14:07:55 -04:00
|
|
|
Load an image from a tar archive
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-load(1)** for full documentation on the **load** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**login**
|
2016-03-01 11:28:42 -05:00
|
|
|
Log in to a Docker Registry
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-login(1)** for full documentation on the **login** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**logout**
|
2015-04-18 20:42:24 -04:00
|
|
|
Log the user out of a Docker Registry
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-logout(1)** for full documentation on the **logout** command.
|
2014-06-27 02:52:36 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**logs**
|
2014-04-16 14:07:55 -04:00
|
|
|
Fetch the logs of a container
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-logs(1)** for full documentation on the **logs** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**pause**
|
2014-06-30 22:58:04 -04:00
|
|
|
Pause all processes within a container
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-pause(1)** for full documentation on the **pause** command.
|
2014-06-30 22:58:04 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**port**
|
2014-04-16 14:07:55 -04:00
|
|
|
Lookup the public-facing port which is NAT-ed to PRIVATE_PORT
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-port(1)** for full documentation on the **port** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**ps**
|
2014-04-16 14:07:55 -04:00
|
|
|
List containers
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-ps(1)** for full documentation on the **ps** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**pull**
|
2015-04-18 20:42:24 -04:00
|
|
|
Pull an image or a repository from a Docker Registry
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-pull(1)** for full documentation on the **pull** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**push**
|
2015-04-18 20:42:24 -04:00
|
|
|
Push an image or a repository to a Docker Registry
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-push(1)** for full documentation on the **push** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-08-03 12:36:37 -04:00
|
|
|
**rename**
|
|
|
|
Rename a container.
|
|
|
|
See **docker-rename(1)** for full documentation on the **rename** command.
|
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**restart**
|
2015-09-09 06:27:41 -04:00
|
|
|
Restart a container
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-restart(1)** for full documentation on the **restart** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**rm**
|
2014-04-16 14:07:55 -04:00
|
|
|
Remove one or more containers
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-rm(1)** for full documentation on the **rm** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**rmi**
|
2014-04-16 14:07:55 -04:00
|
|
|
Remove one or more images
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-rmi(1)** for full documentation on the **rmi** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**run**
|
2014-04-16 14:07:55 -04:00
|
|
|
Run a command in a new container
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-run(1)** for full documentation on the **run** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**save**
|
2014-04-16 14:07:55 -04:00
|
|
|
Save an image to a tar archive
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-save(1)** for full documentation on the **save** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**search**
|
2014-04-16 14:07:55 -04:00
|
|
|
Search for an image in the Docker index
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-search(1)** for full documentation on the **search** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**start**
|
2015-10-03 11:56:41 -04:00
|
|
|
Start a container
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-start(1)** for full documentation on the **start** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**stats**
|
2015-03-13 03:28:09 -04:00
|
|
|
Display a live stream of one or more containers' resource usage statistics
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-stats(1)** for full documentation on the **stats** command.
|
2015-03-13 03:28:09 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**stop**
|
2015-10-03 11:56:41 -04:00
|
|
|
Stop a container
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-stop(1)** for full documentation on the **stop** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**tag**
|
2014-04-16 14:07:55 -04:00
|
|
|
Tag an image into a repository
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-tag(1)** for full documentation on the **tag** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**top**
|
2014-04-16 14:07:55 -04:00
|
|
|
Lookup the running processes of a container
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-top(1)** for full documentation on the **top** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**unpause**
|
2014-06-30 22:58:04 -04:00
|
|
|
Unpause all processes within a container
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-unpause(1)** for full documentation on the **unpause** command.
|
2014-06-30 22:58:04 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**version**
|
2014-04-16 14:07:55 -04:00
|
|
|
Show the Docker version information
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-version(1)** for full documentation on the **version** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-04-27 08:54:51 -04:00
|
|
|
**wait**
|
2014-04-16 14:07:55 -04:00
|
|
|
Block until a container stops, then print its exit code
|
2015-04-27 08:54:51 -04:00
|
|
|
See **docker-wait(1)** for full documentation on the **wait** command.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2016-01-03 17:03:39 -05:00
|
|
|
|
2016-03-18 15:43:17 -04:00
|
|
|
# RUNTIME EXECUTION OPTIONS
|
2015-01-28 17:54:25 -05:00
|
|
|
|
2016-01-07 11:08:30 -05:00
|
|
|
Use the **--exec-opt** flags to specify options to the execution driver.
|
|
|
|
The following options are available:
|
2015-01-28 17:54:25 -05:00
|
|
|
|
|
|
|
#### native.cgroupdriver
|
2016-03-24 12:18:03 -04:00
|
|
|
Specifies the management of the container's `cgroups`. You can specify `cgroupfs`
|
|
|
|
or `systemd`. If you specify `systemd` and it is not available, the system errors
|
|
|
|
out.
|
2015-01-28 17:54:25 -05: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
|
|
|
|
2015-02-22 15:39:43 -05:00
|
|
|
man docker-run
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
# 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.
|