2016-10-14 18:30:36 -04:00
|
|
|
---
|
|
|
|
title: "exec"
|
|
|
|
description: "The exec command description and usage"
|
2016-11-03 18:48:30 -04:00
|
|
|
keywords: "command, container, run, execute"
|
2016-10-14 18:30:36 -04:00
|
|
|
---
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2016-10-19 13:25:45 -04:00
|
|
|
<!-- This file is maintained within the docker/docker Github
|
|
|
|
repository at https://github.com/docker/docker/. Make all
|
|
|
|
pull requests against that repo. If you see this file in
|
|
|
|
another repository, consider it read-only there, as it will
|
|
|
|
periodically be overwritten by the definitive file. Pull
|
|
|
|
requests which include edits to this file in other repositories
|
|
|
|
will be rejected.
|
|
|
|
-->
|
|
|
|
|
2015-06-21 16:41:38 -04:00
|
|
|
# exec
|
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
```markdown
|
|
|
|
Usage: docker exec [OPTIONS] CONTAINER COMMAND [ARG...]
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
Run a command in a running container
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2016-09-12 06:34:44 -04:00
|
|
|
Options:
|
2016-07-07 14:43:18 -04:00
|
|
|
-d, --detach Detached mode: run command in the background
|
2016-09-12 06:34:44 -04:00
|
|
|
--detach-keys Override the key sequence for detaching a container
|
2016-07-13 13:24:41 -04:00
|
|
|
-e, --env=[] Set environment variables
|
2016-09-12 06:34:44 -04:00
|
|
|
--help Print usage
|
2016-07-07 14:43:18 -04:00
|
|
|
-i, --interactive Keep STDIN open even if not attached
|
2016-09-12 06:34:44 -04:00
|
|
|
--privileged Give extended privileges to the command
|
2016-07-07 14:43:18 -04:00
|
|
|
-t, --tty Allocate a pseudo-TTY
|
|
|
|
-u, --user Username or UID (format: <name|uid>[:<group|gid>])
|
|
|
|
```
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2017-02-13 02:47:38 -05:00
|
|
|
## Description
|
2017-02-07 18:42:48 -05:00
|
|
|
|
2015-06-21 16:41:38 -04:00
|
|
|
The `docker exec` command runs a new command in a running container.
|
|
|
|
|
|
|
|
The command started using `docker exec` only runs while the container's primary
|
|
|
|
process (`PID 1`) is running, and it is not restarted if the container is
|
|
|
|
restarted.
|
|
|
|
|
2017-04-25 20:54:06 -04:00
|
|
|
COMMAND will run in the default directory of the container. It the
|
|
|
|
underlying image has a custom directory specified with the WORKDIR directive
|
|
|
|
in its Dockerfile, this will be used instead.
|
|
|
|
|
|
|
|
COMMAND should be an executable, a chained or a quoted command
|
|
|
|
will not work. Example: `docker exec -ti my_container "echo a && echo b"` will
|
|
|
|
not work, but `docker exec -ti my_container sh -c "echo a && echo b"` will.
|
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
## Examples
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
### Run `docker exec` on a running container
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
First, start a container.
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
```bash
|
|
|
|
$ docker run --name ubuntu_bash --rm -i -t ubuntu bash
|
|
|
|
```
|
2015-06-21 16:41:38 -04:00
|
|
|
|
|
|
|
This will create a container named `ubuntu_bash` and start a Bash session.
|
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
Next, execute a command on the container.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker exec -d ubuntu_bash touch /tmp/execWorks
|
|
|
|
```
|
2015-06-21 16:41:38 -04:00
|
|
|
|
|
|
|
This will create a new file `/tmp/execWorks` inside the running container
|
|
|
|
`ubuntu_bash`, in the background.
|
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
Next, execute an interactive `bash` shell on the container.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker exec -it ubuntu_bash bash
|
|
|
|
```
|
2015-06-21 16:41:38 -04:00
|
|
|
|
|
|
|
This will create a new Bash session in the container `ubuntu_bash`.
|
2017-02-07 18:42:48 -05:00
|
|
|
|
2017-06-15 11:24:41 -04:00
|
|
|
Next, set an environment variable in the current bash session.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker exec -it -e VAR=1 ubuntu_bash bash
|
|
|
|
```
|
|
|
|
|
|
|
|
This will create a new Bash session in the container `ubuntu_bash` with environment
|
|
|
|
variable `$VAR` set to "1". Note that this environment variable will only be valid
|
|
|
|
on the current Bash session.
|
|
|
|
|
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
### Try to run `docker exec` on a paused container
|
|
|
|
|
|
|
|
If the container is paused, then the `docker exec` command will fail with an error:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker pause test
|
|
|
|
|
|
|
|
test
|
|
|
|
|
|
|
|
$ docker ps
|
|
|
|
|
|
|
|
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
|
|
|
|
1ae3b36715d2 ubuntu:latest "bash" 17 seconds ago Up 16 seconds (Paused) test
|
|
|
|
|
|
|
|
$ docker exec test ls
|
|
|
|
|
|
|
|
FATA[0000] Error response from daemon: Container test is paused, unpause the container before exec
|
|
|
|
|
|
|
|
$ echo $?
|
|
|
|
1
|
|
|
|
```
|