Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ Kill a container or send a signal to a container
**Params**:

* container (str): The container to kill
* signal (str or int): The singal to send. Defaults to `SIGKILL`
* signal (str or int): The signal to send. Defaults to `SIGKILL`

## load_image

Expand Down Expand Up @@ -726,6 +726,10 @@ Identical to the `docker search` command.
Similar to the `docker start` command, but doesn't support attach options. Use
`.logs()` to recover `stdout`/`stderr`.

**Params**:

* container (str): The container to start

**Deprecation warning:** For API version > 1.15, it is highly recommended to
provide host config options in the
[`host_config` parameter of `create_container`](#create_container)
Expand All @@ -748,7 +752,7 @@ This will stream statistics for a specific container.

**Params**:

* container (str): The container to start
* container (str): The container to stream statistics for
* decode (bool): If set to true, stream will be decoded into dicts on the
fly. False by default.

Expand Down