traefik/vendor/github.com/docker/engine-api/client/container_pause.go
2017-03-09 13:13:02 +01:00

10 lines
341 B
Go

package client
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
}