mirror of
https://github.com/containers/podman.git
synced 2026-03-29 03:52:19 -04:00
Update to the latest c/{common,image} which inclused an update to
docker v28, that update is NOT backwards compatible so I had to fix a
few types.
NOTE: handler.ExecCreateConfig is used directly by the bindings. Thus
this is an API break for pkg/bindings. Including docker types as part of
any stable pkg/bindings API was a very bad idea.
I see no way to avoid that unless we never want to docker v28, which is
not easy as the update comes in from c/image and maybe other packages.
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
36 lines
948 B
Go
36 lines
948 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/api/types/filters"
|
|
"github.com/docker/docker/api/types/volume"
|
|
)
|
|
|
|
// VolumesPrune requests the daemon to delete unused data
|
|
func (cli *Client) VolumesPrune(ctx context.Context, pruneFilters filters.Args) (volume.PruneReport, error) {
|
|
if err := cli.NewVersionError(ctx, "1.25", "volume prune"); err != nil {
|
|
return volume.PruneReport{}, err
|
|
}
|
|
|
|
query, err := getFiltersQuery(pruneFilters)
|
|
if err != nil {
|
|
return volume.PruneReport{}, err
|
|
}
|
|
|
|
resp, err := cli.post(ctx, "/volumes/prune", query, nil, nil)
|
|
defer ensureReaderClosed(resp)
|
|
if err != nil {
|
|
return volume.PruneReport{}, err
|
|
}
|
|
|
|
var report volume.PruneReport
|
|
if err := json.NewDecoder(resp.Body).Decode(&report); err != nil {
|
|
return volume.PruneReport{}, fmt.Errorf("Error retrieving volume prune report: %v", err)
|
|
}
|
|
|
|
return report, nil
|
|
}
|