You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
487 B
Go
19 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
|
|
}
|