full diff: https://github.com/docker/docker/compare/v28.2.2...6a1fb46d4805 Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
16 lines
412 B
Go
16 lines
412 B
Go
package client
|
|
|
|
import "context"
|
|
|
|
// ContainerPause pauses the main process of a given container without terminating it.
|
|
func (cli *Client) ContainerPause(ctx context.Context, containerID string) error {
|
|
containerID, err := trimID("container", containerID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
resp, err := cli.post(ctx, "/containers/"+containerID+"/pause", nil, nil, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|