Merge pull request #39342 from jccomputing/detach

dockerng: fix documentation for detach's default value
This commit is contained in:
Mike Place 2017-02-15 17:11:54 -07:00 committed by GitHub
commit 05de98e237
3 changed files with 6 additions and 6 deletions

View File

@ -98664,10 +98664,10 @@ Attach TTYs
Example: \fBtty=True\fP
.TP
.B detach
True
False
If \fBTrue\fP, run \fBcommand\fP in the background (daemon mode)
.sp
Example: \fBdetach=False\fP
Example: \fBdetach=True\fP
.TP
.B user
User under which to run docker

View File

@ -2836,10 +2836,10 @@ def create(image,
Example: ``tty=True``
detach : True
detach : False
If ``True``, run ``command`` in the background (daemon mode)
Example: ``detach=False``
Example: ``detach=True``
user
User under which to run docker

View File

@ -980,7 +980,7 @@ def running(name,
- image: bar/baz:latest
- tty: True
detach : True
detach : False
If ``True``, run the container's command in the background (daemon
mode)
@ -989,7 +989,7 @@ def running(name,
foo:
dockerng.running:
- image: bar/baz:latest
- detach: False
- detach: True
user
User under which to run docker