2016-09-06 14:46:37 -04:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
|
2016-10-20 18:56:27 -04:00
|
|
|
"github.com/docker/docker/api/types/container"
|
2016-09-06 14:46:37 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// ContainerWait pauses execution until a container exits.
|
|
|
|
// It returns the API status code as response of its readiness.
|
2016-10-20 18:56:27 -04:00
|
|
|
func (cli *Client) ContainerWait(ctx context.Context, containerID string) (int64, error) {
|
2016-09-06 14:46:37 -04:00
|
|
|
resp, err := cli.post(ctx, "/containers/"+containerID+"/wait", nil, nil, nil)
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
defer ensureReaderClosed(resp)
|
|
|
|
|
2016-10-20 18:56:27 -04:00
|
|
|
var res container.ContainerWaitOKBody
|
2016-09-06 14:46:37 -04:00
|
|
|
if err := json.NewDecoder(resp.body).Decode(&res); err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return res.StatusCode, nil
|
|
|
|
}
|