From 17783dda6880c786a6eb3f47b3b6100e43bcdc77 Mon Sep 17 00:00:00 2001 From: Qi Wang Date: Thu, 16 Apr 2020 00:41:09 -0400 Subject: manifest create,add,inspect Implememts manifest subcommands create, add, inspect. Signed-off-by: Qi Wang --- pkg/domain/entities/engine_image.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pkg/domain/entities/engine_image.go') diff --git a/pkg/domain/entities/engine_image.go b/pkg/domain/entities/engine_image.go index 84680ab1b..fefcd751d 100644 --- a/pkg/domain/entities/engine_image.go +++ b/pkg/domain/entities/engine_image.go @@ -25,4 +25,7 @@ type ImageEngine interface { Tag(ctx context.Context, nameOrId string, tags []string, options ImageTagOptions) error Tree(ctx context.Context, nameOrId string, options ImageTreeOptions) (*ImageTreeReport, error) Untag(ctx context.Context, nameOrId string, tags []string, options ImageUntagOptions) error + ManifestCreate(ctx context.Context, names, images []string, opts ManifestCreateOptions) (string, error) + ManifestInspect(ctx context.Context, name string) ([]byte, error) + ManifestAdd(ctx context.Context, opts ManifestAddOptions) (string, error) } -- cgit v1.2.3-54-g00ecf