mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-29 21:23:51 +00:00
Generated largely from the specified config; small parts taken from `docker image inspect`, such as the command line. Renamed some of the yaml keys to match the OCI spec rather than Docker Compose as we decided they are more readable, no more underscores. Add some extra functionality - tmpfs specification - fully general mount specification - no new privileges can be specified now For nostalgic reasons, using engine-api to talk to the docker cli as we only need an old API version, and it is nice and easy to vendor... Signed-off-by: Justin Cormack <justin.cormack@docker.com>
55 lines
1.5 KiB
Go
55 lines
1.5 KiB
Go
package client
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"net/url"
|
|
|
|
"github.com/docker/engine-api/types"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// ContainerInspect returns the container information.
|
|
func (cli *Client) ContainerInspect(ctx context.Context, containerID string) (types.ContainerJSON, error) {
|
|
serverResp, err := cli.get(ctx, "/containers/"+containerID+"/json", nil, nil)
|
|
if err != nil {
|
|
if serverResp.statusCode == http.StatusNotFound {
|
|
return types.ContainerJSON{}, containerNotFoundError{containerID}
|
|
}
|
|
return types.ContainerJSON{}, err
|
|
}
|
|
|
|
var response types.ContainerJSON
|
|
err = json.NewDecoder(serverResp.body).Decode(&response)
|
|
ensureReaderClosed(serverResp)
|
|
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) {
|
|
query := url.Values{}
|
|
if getSize {
|
|
query.Set("size", "1")
|
|
}
|
|
serverResp, err := cli.get(ctx, "/containers/"+containerID+"/json", query, nil)
|
|
if err != nil {
|
|
if serverResp.statusCode == http.StatusNotFound {
|
|
return types.ContainerJSON{}, nil, containerNotFoundError{containerID}
|
|
}
|
|
return types.ContainerJSON{}, nil, err
|
|
}
|
|
defer ensureReaderClosed(serverResp)
|
|
|
|
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
|
|
}
|