mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
7c36a1af03
This moves the engine-api client package to `/docker/docker/client`. Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
40 lines
984 B
Go
40 lines
984 B
Go
package client
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/url"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/api/types/filters"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// ImageList returns a list of images in the docker host.
|
|
func (cli *Client) ImageList(ctx context.Context, options types.ImageListOptions) ([]types.Image, error) {
|
|
var images []types.Image
|
|
query := url.Values{}
|
|
|
|
if options.Filters.Len() > 0 {
|
|
filterJSON, err := filters.ToParamWithVersion(cli.version, options.Filters)
|
|
if err != nil {
|
|
return images, err
|
|
}
|
|
query.Set("filters", filterJSON)
|
|
}
|
|
if options.MatchName != "" {
|
|
// FIXME rename this parameter, to not be confused with the filters flag
|
|
query.Set("filter", options.MatchName)
|
|
}
|
|
if options.All {
|
|
query.Set("all", "1")
|
|
}
|
|
|
|
serverResp, err := cli.get(ctx, "/images/json", query, nil)
|
|
if err != nil {
|
|
return images, err
|
|
}
|
|
|
|
err = json.NewDecoder(serverResp.body).Decode(&images)
|
|
ensureReaderClosed(serverResp)
|
|
return images, err
|
|
}
|