mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
340711db3d
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
33 lines
881 B
Go
33 lines
881 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/url"
|
|
|
|
"github.com/docker/docker/api/types/filters"
|
|
"github.com/docker/docker/api/types/volume"
|
|
)
|
|
|
|
// VolumeList returns the volumes configured in the docker host.
|
|
func (cli *Client) VolumeList(ctx context.Context, options volume.ListOptions) (volume.ListResponse, error) {
|
|
var volumes volume.ListResponse
|
|
query := url.Values{}
|
|
|
|
if options.Filters.Len() > 0 {
|
|
//nolint:staticcheck // ignore SA1019 for old code
|
|
filterJSON, err := filters.ToParamWithVersion(cli.version, options.Filters)
|
|
if err != nil {
|
|
return volumes, err
|
|
}
|
|
query.Set("filters", filterJSON)
|
|
}
|
|
resp, err := cli.get(ctx, "/volumes", query, nil)
|
|
defer ensureReaderClosed(resp)
|
|
if err != nil {
|
|
return volumes, err
|
|
}
|
|
|
|
err = json.NewDecoder(resp.body).Decode(&volumes)
|
|
return volumes, err
|
|
}
|