mirror of
https://github.com/drone/drone-cli.git
synced 2026-01-24 11:48:01 +01:00
11 lines
373 B
Go
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
|
|
}
|