1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #8614 from ryanrdetzel/master

exec docs syntax fix
This commit is contained in:
James Turnbull 2014-10-17 14:38:43 -04:00
commit 04932e38af

View file

@ -642,7 +642,7 @@ This will create a container named `ubuntu_bash` and start a Bash session.
This will create a new file `/tmp/execWorks` inside the running container This will create a new file `/tmp/execWorks` inside the running container
`ubuntu_bash`, in the background. `ubuntu_bash`, in the background.
$ sudo docker exec ubuntu_bash -it bash $ sudo docker exec -it ubuntu_bash bash
This will create a new Bash session in the container `ubuntu_bash`. This will create a new Bash session in the container `ubuntu_bash`.