|
@@ -22,7 +22,7 @@ type Backend interface {
|
|
|
|
|
|
type imageBackend interface {
|
|
|
ImageDelete(ctx context.Context, imageRef string, force, prune bool) ([]types.ImageDeleteResponseItem, error)
|
|
|
- ImageHistory(imageName string) ([]*image.HistoryResponseItem, error)
|
|
|
+ ImageHistory(ctx context.Context, imageName string) ([]*image.HistoryResponseItem, error)
|
|
|
Images(ctx context.Context, opts types.ImageListOptions) ([]*types.ImageSummary, error)
|
|
|
GetImage(ctx context.Context, refOrID string, options image.GetImageOpts) (*dockerimage.Image, error)
|
|
|
TagImage(imageName, repository, tag string) (string, error)
|