diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-01-08 15:05:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-08 15:05:06 +0100 |
commit | 27caffbb240725255485deaaecd548663adbf1fd (patch) | |
tree | aa6bb260b836f8cb534cd494e953b781dffc57bd /cmd/podman/varlink/io.podman.varlink | |
parent | 0b9dd1a1a0e967e87c242c865cd244f90cb740e1 (diff) | |
parent | 40b74e02b77e83c377fdae83f626f83403b38152 (diff) | |
download | podman-27caffbb240725255485deaaecd548663adbf1fd.tar.gz podman-27caffbb240725255485deaaecd548663adbf1fd.tar.bz2 podman-27caffbb240725255485deaaecd548663adbf1fd.zip |
Merge pull request #4712 from openSUSE/untag-command
Add `untag` sub-command
Diffstat (limited to 'cmd/podman/varlink/io.podman.varlink')
-rw-r--r-- | cmd/podman/varlink/io.podman.varlink | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cmd/podman/varlink/io.podman.varlink b/cmd/podman/varlink/io.podman.varlink index 1bacd2de6..e1f28d847 100644 --- a/cmd/podman/varlink/io.podman.varlink +++ b/cmd/podman/varlink/io.podman.varlink @@ -860,6 +860,12 @@ method PushImage(name: string, tag: string, compress: bool, format: string, remo # be found, an [ImageNotFound](#ImageNotFound) error will be returned; otherwise, the ID of the image is returned on success. method TagImage(name: string, tagged: string) -> (image: string) +# UntagImage takes the name or ID of an image in local storage as well as the +# tag name to be removed. If the image cannot be found, an +# [ImageNotFound](#ImageNotFound) error will be returned; otherwise, the ID of +# the image is returned on success. +method UntagImage(name: string, tag: string) -> (image: string) + # RemoveImage takes the name or ID of an image as well as a boolean that determines if containers using that image # should be deleted. If the image cannot be found, an [ImageNotFound](#ImageNotFound) error will be returned. The # ID of the removed image is returned when complete. See also [DeleteUnusedImages](DeleteUnusedImages). |