mirror of https://github.com/docker/cli.git
Merge pull request #198 from thaJeztah/add-exec-example
Added usage example for -e for exec
This commit is contained in:
commit
eb7452cf3a
|
@ -76,6 +76,17 @@ $ docker exec -it ubuntu_bash bash
|
|||
|
||||
This will create a new Bash session in the container `ubuntu_bash`.
|
||||
|
||||
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.
|
||||
|
||||
|
||||
### Try to run `docker exec` on a paused container
|
||||
|
||||
If the container is paused, then the `docker exec` command will fail with an error:
|
||||
|
|
Loading…
Reference in New Issue