mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-29 21:49:41 +00:00
Generated largely from the specified config; small parts taken from `docker image inspect`, such as the command line. Renamed some of the yaml keys to match the OCI spec rather than Docker Compose as we decided they are more readable, no more underscores. Add some extra functionality - tmpfs specification - fully general mount specification - no new privileges can be specified now For nostalgic reasons, using engine-api to talk to the docker cli as we only need an old API version, and it is nice and easy to vendor... Signed-off-by: Justin Cormack <justin.cormack@docker.com>
23 lines
644 B
Go
23 lines
644 B
Go
package client
|
|
|
|
import (
|
|
"net/url"
|
|
"time"
|
|
|
|
timetypes "github.com/docker/engine-api/types/time"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// ContainerRestart stops and starts a container again.
|
|
// It makes the daemon to wait for the container to be up again for
|
|
// a specific amount of time, given the timeout.
|
|
func (cli *Client) ContainerRestart(ctx context.Context, containerID string, timeout *time.Duration) error {
|
|
query := url.Values{}
|
|
if timeout != nil {
|
|
query.Set("t", timetypes.DurationToSecondsString(*timeout))
|
|
}
|
|
resp, err := cli.post(ctx, "/containers/"+containerID+"/restart", query, nil, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|