Fix documentation for detach's default value

This commit is contained in:
Jean-Claude Computing 2017-02-15 20:23:33 +01:00
parent ff7aa83532
commit 94f349a900
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