diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-01 19:08:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-01 19:08:08 +0200 |
commit | d534e524272121a6489c1a2a2c11c6b389027ecd (patch) | |
tree | dbe09731facf6a80406a62a6ca95b3f1514c2047 /pkg/domain/entities/engine_image.go | |
parent | 82cbebcbea7f92be7e82bc11fdf1b30d7e194cdc (diff) | |
parent | 46e3b2efb84580cc12b0bc5ad0863957b88ae202 (diff) | |
download | podman-d534e524272121a6489c1a2a2c11c6b389027ecd.tar.gz podman-d534e524272121a6489c1a2a2c11c6b389027ecd.tar.bz2 podman-d534e524272121a6489c1a2a2c11c6b389027ecd.zip |
Merge pull request #5645 from jwhonce/wip/inspect
V2 podman inspect
Diffstat (limited to 'pkg/domain/entities/engine_image.go')
-rw-r--r-- | pkg/domain/entities/engine_image.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/domain/entities/engine_image.go b/pkg/domain/entities/engine_image.go index 6547cbfaf..2ca48e795 100644 --- a/pkg/domain/entities/engine_image.go +++ b/pkg/domain/entities/engine_image.go @@ -8,6 +8,7 @@ type ImageEngine interface { Delete(ctx context.Context, nameOrId []string, opts ImageDeleteOptions) (*ImageDeleteReport, error) Exists(ctx context.Context, nameOrId string) (*BoolReport, error) History(ctx context.Context, nameOrId string, opts ImageHistoryOptions) (*ImageHistoryReport, error) + Inspect(ctx context.Context, names []string, opts InspectOptions) (*ImageInspectReport, error) List(ctx context.Context, opts ImageListOptions) ([]*ImageSummary, error) Prune(ctx context.Context, opts ImagePruneOptions) (*ImagePruneReport, error) Pull(ctx context.Context, rawImage string, opts ImagePullOptions) (*ImagePullReport, error) |