2018-02-05 16:05:59 -05:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 14:46:37 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2018-04-19 18:30:59 -04:00
|
|
|
"context"
|
2016-09-06 14:46:37 -04:00
|
|
|
"encoding/json"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/url"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ContainerInspect returns the container information.
|
|
|
|
func (cli *Client) ContainerInspect(ctx context.Context, containerID string) (types.ContainerJSON, error) {
|
2018-01-30 07:35:22 -05:00
|
|
|
if containerID == "" {
|
|
|
|
return types.ContainerJSON{}, objectNotFoundError{object: "container", id: containerID}
|
|
|
|
}
|
2016-09-06 14:46:37 -04:00
|
|
|
serverResp, err := cli.get(ctx, "/containers/"+containerID+"/json", nil, nil)
|
2019-02-11 07:26:12 -05:00
|
|
|
defer ensureReaderClosed(serverResp)
|
2016-09-06 14:46:37 -04:00
|
|
|
if err != nil {
|
2017-09-08 12:04:34 -04:00
|
|
|
return types.ContainerJSON{}, wrapResponseError(err, serverResp, "container", containerID)
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
var response types.ContainerJSON
|
|
|
|
err = json.NewDecoder(serverResp.body).Decode(&response)
|
|
|
|
return response, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContainerInspectWithRaw returns the container information and its raw representation.
|
|
|
|
func (cli *Client) ContainerInspectWithRaw(ctx context.Context, containerID string, getSize bool) (types.ContainerJSON, []byte, error) {
|
2018-01-30 07:35:22 -05:00
|
|
|
if containerID == "" {
|
|
|
|
return types.ContainerJSON{}, nil, objectNotFoundError{object: "container", id: containerID}
|
|
|
|
}
|
2016-09-06 14:46:37 -04:00
|
|
|
query := url.Values{}
|
|
|
|
if getSize {
|
|
|
|
query.Set("size", "1")
|
|
|
|
}
|
|
|
|
serverResp, err := cli.get(ctx, "/containers/"+containerID+"/json", query, nil)
|
2019-02-11 07:26:12 -05:00
|
|
|
defer ensureReaderClosed(serverResp)
|
2016-09-06 14:46:37 -04:00
|
|
|
if err != nil {
|
2017-09-08 12:04:34 -04:00
|
|
|
return types.ContainerJSON{}, nil, wrapResponseError(err, serverResp, "container", containerID)
|
2016-09-06 14:46:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
body, err := ioutil.ReadAll(serverResp.body)
|
|
|
|
if err != nil {
|
|
|
|
return types.ContainerJSON{}, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var response types.ContainerJSON
|
|
|
|
rdr := bytes.NewReader(body)
|
|
|
|
err = json.NewDecoder(rdr).Decode(&response)
|
|
|
|
return response, body, err
|
|
|
|
}
|