mirror of https://github.com/docker/docker-py.git
Minor typo correction
The stdout argument name was repeated in the run method docstring. The second should be replaced by stderr. Signed-off-by: Ewan Barr <ewan.d.barr@googlmail.com>
This commit is contained in:
parent
d12b5bb5e6
commit
112dc12bc0
|
@ -585,7 +585,7 @@ class ContainerCollection(Collection):
|
|||
stdin_open (bool): Keep ``STDIN`` open even if not attached.
|
||||
stdout (bool): Return logs from ``STDOUT`` when ``detach=False``.
|
||||
Default: ``True``.
|
||||
stdout (bool): Return logs from ``STDERR`` when ``detach=False``.
|
||||
stderr (bool): Return logs from ``STDERR`` when ``detach=False``.
|
||||
Default: ``False``.
|
||||
stop_signal (str): The stop signal to use to stop the container
|
||||
(e.g. ``SIGINT``).
|
||||
|
|
Loading…
Reference in New Issue