mirror of https://github.com/docker/docker-py.git
Merge pull request #2181 from funkyfuture/exec_run_docs
Fixes the documented return value of models.containers.Container.exec_run
This commit is contained in:
commit
666388168d
|
|
@ -172,10 +172,10 @@ class Container(Model):
|
||||||
exit_code: (int):
|
exit_code: (int):
|
||||||
Exit code for the executed command or ``None`` if
|
Exit code for the executed command or ``None`` if
|
||||||
either ``stream```or ``socket`` is ``True``.
|
either ``stream```or ``socket`` is ``True``.
|
||||||
output: (generator or str):
|
output: (generator or bytes):
|
||||||
If ``stream=True``, a generator yielding response chunks.
|
If ``stream=True``, a generator yielding response chunks.
|
||||||
If ``socket=True``, a socket object for the connection.
|
If ``socket=True``, a socket object for the connection.
|
||||||
A string containing response data otherwise.
|
A bytestring containing response data otherwise.
|
||||||
|
|
||||||
Raises:
|
Raises:
|
||||||
:py:class:`docker.errors.APIError`
|
:py:class:`docker.errors.APIError`
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue