summaryrefslogtreecommitdiff
path: root/vendor/github.com/docker/docker/client/container_unpause.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/docker/docker/client/container_unpause.go')
-rw-r--r--vendor/github.com/docker/docker/client/container_unpause.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/github.com/docker/docker/client/container_unpause.go b/vendor/github.com/docker/docker/client/container_unpause.go
new file mode 100644
index 0000000..f602549
--- /dev/null
+++ b/vendor/github.com/docker/docker/client/container_unpause.go
@@ -0,0 +1,15 @@
+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 {
+ containerID, err := trimID("container", containerID)
+ if err != nil {
+ return err
+ }
+
+ resp, err := cli.post(ctx, "/containers/"+containerID+"/unpause", nil, nil, nil)
+ ensureReaderClosed(resp)
+ return err
+}