1
0
mirror of https://gitea.com/gitea/act_runner synced 2026-05-14 02:11:21 +02:00
Files
act_runner/vendor/github.com/docker/docker/client/container_unpause.go
Casey Lee 320e9b6057 fail on error (#20)
ci-via-github-actions
2019-01-23 11:51:22 -08:00

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
}