2018-02-05 16:05:59 -05:00
|
|
|
package client // import "github.com/docker/docker/client"
|
2016-09-06 14:46:37 -04:00
|
|
|
|
|
|
|
import (
|
2018-04-19 18:30:59 -04:00
|
|
|
"context"
|
2016-09-06 14:46:37 -04:00
|
|
|
"encoding/json"
|
|
|
|
"net/url"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types/filters"
|
2022-03-05 04:51:34 -05:00
|
|
|
"github.com/docker/docker/api/types/volume"
|
2016-09-06 14:46:37 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// VolumeList returns the volumes configured in the docker host.
|
2019-11-01 11:11:35 -04:00
|
|
|
func (cli *Client) VolumeList(ctx context.Context, options volume.ListOptions) (volume.ListResponse, error) {
|
2022-03-05 15:04:55 -05:00
|
|
|
var volumes volume.ListResponse
|
2016-09-06 14:46:37 -04:00
|
|
|
query := url.Values{}
|
|
|
|
|
2019-11-01 11:11:35 -04:00
|
|
|
if options.Filters.Len() > 0 {
|
2019-10-12 10:52:08 -04:00
|
|
|
//nolint:staticcheck // ignore SA1019 for old code
|
2019-11-01 11:11:35 -04:00
|
|
|
filterJSON, err := filters.ToParamWithVersion(cli.version, options.Filters)
|
2016-09-06 14:46:37 -04:00
|
|
|
if err != nil {
|
|
|
|
return volumes, err
|
|
|
|
}
|
|
|
|
query.Set("filters", filterJSON)
|
|
|
|
}
|
|
|
|
resp, err := cli.get(ctx, "/volumes", query, nil)
|
2019-02-11 07:26:12 -05:00
|
|
|
defer ensureReaderClosed(resp)
|
2016-09-06 14:46:37 -04:00
|
|
|
if err != nil {
|
|
|
|
return volumes, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.NewDecoder(resp.body).Decode(&volumes)
|
|
|
|
return volumes, err
|
|
|
|
}
|