- 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>
37 lines
937 B
Go
37 lines
937 B
Go
package client // import "github.com/docker/docker/client"
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/api/types/filters"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// ContainersPrune requests the daemon to delete unused data
|
|
func (cli *Client) ContainersPrune(ctx context.Context, pruneFilters filters.Args) (types.ContainersPruneReport, error) {
|
|
var report types.ContainersPruneReport
|
|
|
|
if err := cli.NewVersionError("1.25", "container prune"); err != nil {
|
|
return report, err
|
|
}
|
|
|
|
query, err := getFiltersQuery(pruneFilters)
|
|
if err != nil {
|
|
return report, err
|
|
}
|
|
|
|
serverResp, err := cli.post(ctx, "/containers/prune", query, nil, 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
|
|
}
|