mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 20:31:10 +00:00
75513575be
* store dependency's in git * since we vendor ... rm tech-depts * aad make target 'vendor' to update vendor folder (manual task)
10 lines
373 B
Go
10 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
|
|
}
|