diff options
author | Sascha Grunert <sgrunert@suse.com> | 2019-12-16 13:28:16 +0100 |
---|---|---|
committer | Sascha Grunert <sgrunert@suse.com> | 2020-01-08 10:06:10 +0100 |
commit | 40b74e02b77e83c377fdae83f626f83403b38152 (patch) | |
tree | c71e9d5c4cd1c1517006368c151b81c4ea5d4077 /cmd/podman/cliconfig/config.go | |
parent | c41fd09a8da3a96bc0e58f9f29f87b9bdf30264d (diff) | |
download | podman-40b74e02b77e83c377fdae83f626f83403b38152.tar.gz podman-40b74e02b77e83c377fdae83f626f83403b38152.tar.bz2 podman-40b74e02b77e83c377fdae83f626f83403b38152.zip |
Add `untag` sub-command
Podman now supports untagging images via the `untag` sub-command for the
root and `image` commands. Testing and documentation has been added as
well.
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
Diffstat (limited to 'cmd/podman/cliconfig/config.go')
-rw-r--r-- | cmd/podman/cliconfig/config.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/podman/cliconfig/config.go b/cmd/podman/cliconfig/config.go index 282d90d0b..0e4315411 100644 --- a/cmd/podman/cliconfig/config.go +++ b/cmd/podman/cliconfig/config.go @@ -681,3 +681,7 @@ type SystemDfValues struct { Verbose bool Format string } + +type UntagValues struct { + PodmanCommand +} |