- Add API support for SCTP port mapping - Add canonical import path - Add `REMOVE` and `ORPHANED` to TaskState - Fix TLS from environment variables in client - Introduce NewClientWithOpts func to build custom client easily - Wrap response errors for container copy methodsto fix error detection using `IsErrNotFound` and `IsErrNotImplemented` for `ContainerStatPath`, `CopyFromContainer`, and `CopyToContainer` methods. - Produce errors when empty ids are passed into inspect calls Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
31 lines
766 B
Go
31 lines
766 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// BuildCachePrune requests the daemon to delete unused cache data
|
|
func (cli *Client) BuildCachePrune(ctx context.Context) (*types.BuildCachePruneReport, error) {
|
|
if err := cli.NewVersionError("1.31", "build prune"); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
report := types.BuildCachePruneReport{}
|
|
|
|
serverResp, err := cli.post(ctx, "/build/prune", nil, nil, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer ensureReaderClosed(serverResp)
|
|
|
|
if err := json.NewDecoder(serverResp.body).Decode(&report); err != nil {
|
|
return nil, fmt.Errorf("Error retrieving disk usage: %v", err)
|
|
}
|
|
|
|
return &report, nil
|
|
}
|