1
0
mirror of https://github.com/strongdm/comply synced 2024-09-21 11:35:06 +00:00
comply/vendor/github.com/docker/docker/client/container_unpause.go
2018-05-15 14:13:11 -07:00

11 lines
327 B
Go

package client
import "golang.org/x/net/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
}