mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b365924ec3
Just a small clean-up (there's more endpoints to do this for, but I was working on changes in this area on the CLI when I noticed we were setting this query-parameter unconditionally. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
18 lines
487 B
Go
18 lines
487 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import (
|
|
"context"
|
|
"net/url"
|
|
)
|
|
|
|
// ContainerKill terminates the container process but does not remove the container from the docker host.
|
|
func (cli *Client) ContainerKill(ctx context.Context, containerID, signal string) error {
|
|
query := url.Values{}
|
|
if signal != "" {
|
|
query.Set("signal", signal)
|
|
}
|
|
|
|
resp, err := cli.post(ctx, "/containers/"+containerID+"/kill", query, nil, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|