NAME¶ 名称
podman-untag - Remove one or more names from a locally-stored image
podman-untag - 从本地存储的镜像中删除一个或多个名称
SYNOPSIS¶ 概要
podman untag image [name[:tag]…]
podman image untag image [name[:tag]…]
DESCRIPTION¶ 描述
Remove one or more names from an image in the local storage. The image can be referred to by ID or reference. If no name is specified, all names are removed from the image. If a specified name is a short name and does not include a registry, localhost/
is prefixed (e.g., fedora
-> localhost/fedora
). If a specified name does not include a tag, :latest
is appended (e.g., localhost/fedora
-> localhost/fedora:latest
).
从本地存储中的图像中删除一个或多个名称。 图像可以通过 ID 或引用来引用。 如果未指定名称,则从图像中删除所有名称。 如果指定的名称是短名称且不包括注册表,则添加 localhost/
前缀(例如, fedora
-> localhost/fedora
)。 如果指定的名称不包括标签,则添加 :latest
后缀(例如, localhost/fedora
-> localhost/fedora:latest
)。
OPTIONS¶ 选项
--help, -h¶ --help,-h ¶
Print usage statement 打印使用说明
EXAMPLES¶ 示例
Remove all tags from the specified image.
从指定图像中删除所有标签。
$ podman untag 0e3bbc2
Remove tag from specified image.
从指定图像中删除标签。
$ podman untag imageName:latest otherImageName:latest
Remove multiple tags from the specified image.
从指定的图像中删除多个标签。
$ podman untag httpd myhttpd myregistryhost:5000/fedora/httpd:v2
SEE ALSO¶ 参见 ¶
HISTORY¶ 历史 ¶
December 2019, Originally compiled by Sascha Grunert sgrunert@suse.com
2019 年 12 月,最初由 Sascha Grunert sgrunert@suse.com 编写。