container_unpause.go 263 B

12345678
  1. package lib
  2. // ContainerUnpause resumes the process execution within a container
  3. func (cli *Client) ContainerUnpause(containerID string) error {
  4. resp, err := cli.post("/containers/"+containerID+"/unpause", nil, nil, nil)
  5. ensureReaderClosed(resp)
  6. return err
  7. }