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
|
|
|
)
|
|
|
|
|
|
|
|
// ContainerRestart stops and starts a container again.
|
2021-02-16 10:07:44 -05:00
|
|
|
// It makes the daemon wait for the container to be up again for
|
2016-09-06 14:46:37 -04:00
|
|
|
// a specific amount of time, given the timeout.
|
2022-02-16 05:36:37 -05:00
|
|
|
func (cli *Client) ContainerRestart(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+"/restart", query, nil, nil)
|
|
|
|
ensureReaderClosed(resp)
|
|
|
|
return err
|
|
|
|
}
|