mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
These comments were added to enforce using the correct import path for
our packages ("github.com/docker/docker", not "github.com/moby/moby").
However, when working in go module mode (not GOPATH / vendor), they have
no effect, so their impact is limited.
Remove these imports in preparation of migrating our code to become an
actual go module.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
57 lines
1.2 KiB
Go
57 lines
1.2 KiB
Go
package client
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/url"
|
|
"strconv"
|
|
|
|
"github.com/docker/docker/api/types/container"
|
|
"github.com/docker/docker/api/types/filters"
|
|
)
|
|
|
|
// ContainerList returns the list of containers in the docker host.
|
|
func (cli *Client) ContainerList(ctx context.Context, options container.ListOptions) ([]container.Summary, error) {
|
|
query := url.Values{}
|
|
|
|
if options.All {
|
|
query.Set("all", "1")
|
|
}
|
|
|
|
if options.Limit > 0 {
|
|
query.Set("limit", strconv.Itoa(options.Limit))
|
|
}
|
|
|
|
if options.Since != "" {
|
|
query.Set("since", options.Since)
|
|
}
|
|
|
|
if options.Before != "" {
|
|
query.Set("before", options.Before)
|
|
}
|
|
|
|
if options.Size {
|
|
query.Set("size", "1")
|
|
}
|
|
|
|
if options.Filters.Len() > 0 {
|
|
//nolint:staticcheck // ignore SA1019 for old code
|
|
filterJSON, err := filters.ToParamWithVersion(cli.version, options.Filters)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
query.Set("filters", filterJSON)
|
|
}
|
|
|
|
resp, err := cli.get(ctx, "/containers/json", query, nil)
|
|
defer ensureReaderClosed(resp)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var containers []container.Summary
|
|
err = json.NewDecoder(resp.Body).Decode(&containers)
|
|
return containers, err
|
|
}
|