diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2021-05-05 16:38:32 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2021-05-19 17:32:02 -0400 |
commit | 2b89b241461c6baba777894f09a75df17dd05741 (patch) | |
tree | d2dfa80d41cd5bb7dac3c5bc51a1c7ddf28f02da /pkg/domain/entities/engine_image.go | |
parent | 4c756268e6d0dbe90e61a59d9644e34a0f2d5f36 (diff) | |
download | podman-2b89b241461c6baba777894f09a75df17dd05741.tar.gz podman-2b89b241461c6baba777894f09a75df17dd05741.tar.bz2 podman-2b89b241461c6baba777894f09a75df17dd05741.zip |
Add support for podman manifest rm command
This is mainly to match command line of Docker.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
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 d841ecd6e..1b2de5d5e 100644 --- a/pkg/domain/entities/engine_image.go +++ b/pkg/domain/entities/engine_image.go @@ -37,6 +37,7 @@ type ImageEngine interface { ManifestAdd(ctx context.Context, opts ManifestAddOptions) (string, error) ManifestAnnotate(ctx context.Context, names []string, opts ManifestAnnotateOptions) (string, error) ManifestRemove(ctx context.Context, names []string) (string, error) + ManifestRm(ctx context.Context, names []string) (*ImageRemoveReport, []error) ManifestPush(ctx context.Context, name, destination string, imagePushOpts ImagePushOptions) (string, error) Sign(ctx context.Context, names []string, options SignOptions) (*SignReport, error) } |