mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
27 lines
643 B
Go
27 lines
643 B
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/docker/docker/api/types"
|
||
|
"golang.org/x/net/context"
|
||
|
)
|
||
|
|
||
|
// ImagesPrune requests the daemon to delete unused data
|
||
|
func (cli *Client) ImagesPrune(ctx context.Context, cfg types.ImagesPruneConfig) (types.ImagesPruneReport, error) {
|
||
|
var report types.ImagesPruneReport
|
||
|
|
||
|
serverResp, err := cli.post(ctx, "/images/prune", nil, cfg, nil)
|
||
|
if err != nil {
|
||
|
return report, err
|
||
|
}
|
||
|
defer ensureReaderClosed(serverResp)
|
||
|
|
||
|
if err := json.NewDecoder(serverResp.body).Decode(&report); err != nil {
|
||
|
return report, fmt.Errorf("Error retrieving disk usage: %v", err)
|
||
|
}
|
||
|
|
||
|
return report, nil
|
||
|
}
|