1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package client
- import (
- "encoding/json"
- "net/url"
- "strconv"
- "github.com/docker/engine-api/types"
- "github.com/docker/engine-api/types/filters"
- "golang.org/x/net/context"
- )
- // ContainerList returns the list of containers in the docker host.
- func (cli *Client) ContainerList(ctx context.Context, options types.ContainerListOptions) ([]types.Container, error) {
- query := url.Values{}
- if options.All {
- query.Set("all", "1")
- }
- if options.Limit != -1 {
- 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.Filter.Len() > 0 {
- filterJSON, err := filters.ToParam(options.Filter)
- if err != nil {
- return nil, err
- }
- query.Set("filters", filterJSON)
- }
- resp, err := cli.get(ctx, "/containers/json", query, nil)
- if err != nil {
- return nil, err
- }
- var containers []types.Container
- err = json.NewDecoder(resp.body).Decode(&containers)
- ensureReaderClosed(resp)
- return containers, err
- }
|