mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-04 01:49:42 +00:00
11 lines
354 B
Go
11 lines
354 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import "context"
|
|
|
|
// ContainerUnpause resumes the process execution within a container
|
|
func (cli *Client) ContainerUnpause(ctx context.Context, containerID string) error {
|
|
resp, err := cli.post(ctx, "/containers/"+containerID+"/unpause", nil, nil, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|