mirror of
https://gitea.com/gitea/act_runner
synced 2026-05-14 06:21:20 +02:00
10
vendor/github.com/docker/docker/client/container_unpause.go
generated
vendored
Normal file
10
vendor/github.com/docker/docker/client/container_unpause.go
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user