1
0
mirror of https://github.com/drone/drone-cli.git synced 2026-01-24 11:48:01 +01:00
drone-cli/vendor/docker.io/go-docker/container_pause.go
2018-10-09 11:18:46 -07:00

11 lines
373 B
Go

package docker // import "docker.io/go-docker"
import "golang.org/x/net/context"
// ContainerPause pauses the main process of a given container without terminating it.
func (cli *Client) ContainerPause(ctx context.Context, containerID string) error {
resp, err := cli.post(ctx, "/containers/"+containerID+"/pause", nil, nil, nil)
ensureReaderClosed(resp)
return err
}