2018-02-05 16:05:59 -05:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 14:46:37 -04:00
|
|
|
|
|
|
|
import (
|
2018-04-19 18:30:59 -04:00
|
|
|
"context"
|
2016-09-06 14:46:37 -04:00
|
|
|
"net/url"
|
2022-02-16 05:36:37 -05:00
|
|
|
"strconv"
|
2016-09-06 14:46:37 -04:00
|
|
|
|
2022-02-16 05:36:37 -05:00
|
|
|
"github.com/docker/docker/api/types/container"
|
|
|
|
"github.com/docker/docker/api/types/versions"
|
2016-09-06 14:46:37 -04:00
|
|
|
)
|
|
|
|
|
2018-04-16 19:58:42 -04: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 05:36:37 -05:00
|
|
|
func (cli *Client) ContainerStop(ctx context.Context, containerID string, options container.StopOptions) error {
|
2016-09-06 14:46:37 -04:00
|
|
|
query := url.Values{}
|
2022-02-16 05:36:37 -05:00
|
|
|
if options.Timeout != nil {
|
|
|
|
query.Set("t", strconv.Itoa(*options.Timeout))
|
|
|
|
}
|
|
|
|
if options.Signal != "" && versions.GreaterThanOrEqualTo(cli.version, "1.42") {
|
|
|
|
query.Set("signal", options.Signal)
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
resp, err := cli.post(ctx, "/containers/"+containerID+"/stop", query, nil, nil)
|
|
|
|
ensureReaderClosed(resp)
|
|
|
|
return err
|
|
|
|
}
|