2018-02-05 21:05:59 +00:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 18:46:37 +00:00
|
|
|
|
|
|
|
import (
|
2018-04-19 22:30:59 +00:00
|
|
|
"context"
|
2016-09-06 18:46:37 +00:00
|
|
|
"net/url"
|
2022-02-16 10:36:37 +00:00
|
|
|
"strconv"
|
2016-09-06 18:46:37 +00:00
|
|
|
|
2022-02-16 10:36:37 +00:00
|
|
|
"github.com/docker/docker/api/types/container"
|
|
|
|
"github.com/docker/docker/api/types/versions"
|
2016-09-06 18:46:37 +00:00
|
|
|
)
|
|
|
|
|
2018-04-16 23:58:42 +00:00
|
|
|
// ContainerStop stops a container. In case the container fails to stop
|
|
|
|
// gracefully within a time frame specified by the timeout argument,
|
|
|
|
// it is forcefully terminated (killed).
|
|
|
|
//
|
|
|
|
// If the timeout is nil, the container's StopTimeout value is used, if set,
|
|
|
|
// otherwise the engine default. A negative timeout value can be specified,
|
|
|
|
// meaning no timeout, i.e. no forceful termination is performed.
|
2022-02-16 10:36:37 +00:00
|
|
|
func (cli *Client) ContainerStop(ctx context.Context, containerID string, options container.StopOptions) error {
|
2016-09-06 18:46:37 +00:00
|
|
|
query := url.Values{}
|
2022-02-16 10:36:37 +00:00
|
|
|
if options.Timeout != nil {
|
|
|
|
query.Set("t", strconv.Itoa(*options.Timeout))
|
|
|
|
}
|
2023-09-12 12:08:54 +00:00
|
|
|
if options.Signal != "" {
|
|
|
|
// Make sure we negotiated (if the client is configured to do so),
|
|
|
|
// as code below contains API-version specific handling of options.
|
|
|
|
//
|
|
|
|
// Normally, version-negotiation (if enabled) would not happen until
|
|
|
|
// the API request is made.
|
2024-02-23 11:20:06 +00:00
|
|
|
if err := cli.checkVersion(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-09-12 12:08:54 +00:00
|
|
|
if versions.GreaterThanOrEqualTo(cli.version, "1.42") {
|
|
|
|
query.Set("signal", options.Signal)
|
|
|
|
}
|
2016-09-06 18:46:37 +00:00
|
|
|
}
|
|
|
|
resp, err := cli.post(ctx, "/containers/"+containerID+"/stop", query, nil, nil)
|
|
|
|
ensureReaderClosed(resp)
|
|
|
|
return err
|
|
|
|
}
|