|
@@ -86,6 +86,7 @@ type DistributionAPIClient interface {
|
|
type ImageAPIClient interface {
|
|
type ImageAPIClient interface {
|
|
ImageBuild(ctx context.Context, context io.Reader, options types.ImageBuildOptions) (types.ImageBuildResponse, error)
|
|
ImageBuild(ctx context.Context, context io.Reader, options types.ImageBuildOptions) (types.ImageBuildResponse, error)
|
|
BuildCachePrune(ctx context.Context) (*types.BuildCachePruneReport, error)
|
|
BuildCachePrune(ctx context.Context) (*types.BuildCachePruneReport, error)
|
|
|
|
+ BuildCancel(ctx context.Context, id string) error
|
|
ImageCreate(ctx context.Context, parentReference string, options types.ImageCreateOptions) (io.ReadCloser, error)
|
|
ImageCreate(ctx context.Context, parentReference string, options types.ImageCreateOptions) (io.ReadCloser, error)
|
|
ImageHistory(ctx context.Context, image string) ([]image.HistoryResponseItem, error)
|
|
ImageHistory(ctx context.Context, image string) ([]image.HistoryResponseItem, error)
|
|
ImageImport(ctx context.Context, source types.ImageImportSource, ref string, options types.ImageImportOptions) (io.ReadCloser, error)
|
|
ImageImport(ctx context.Context, source types.ImageImportSource, ref string, options types.ImageImportOptions) (io.ReadCloser, error)
|