mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
bd7d51292c
Signed-off-by: boucher <rboucher@gmail.com>
24 lines
632 B
Go
24 lines
632 B
Go
package client
|
|
|
|
import (
|
|
"net/url"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
)
|
|
|
|
// ContainerStart sends a request to the docker daemon to start a container.
|
|
func (cli *Client) ContainerStart(ctx context.Context, containerID string, options types.ContainerStartOptions) error {
|
|
query := url.Values{}
|
|
if len(options.CheckpointID) != 0 {
|
|
query.Set("checkpoint", options.CheckpointID)
|
|
}
|
|
if len(options.CheckpointDir) != 0 {
|
|
query.Set("checkpoint-dir", options.CheckpointDir)
|
|
}
|
|
|
|
resp, err := cli.post(ctx, "/containers/"+containerID+"/start", query, nil, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|