NAME¶ 名称
podman-tag - Add an additional name to a local image
podman-tag-向本地镜像添加附加名称
SYNOPSIS¶ 概要
podman tag image[:tag] [target-name[:tag]…] [options]
podman 标记图像[:标记] [目标名称[:标记]…] [选项]
podman image tag image[:tag] [target-name[:tag]…] [options]
podman 图像标记图像[:标记] [目标名称[:标记]…] [选项]
DESCRIPTION¶ 描述
Assigns a new image name to an existing image. A full name refers to the entire
image name, including the optional tag after the :
. If there is no tag
provided, then Podman defaults to latest
for both the image and the
target-name.
为现有镜像分配新的镜像名称。完整名称指的是整个镜像名称,包括 :
后的可选标签。如果未提供标签,则 Podman 默认为 latest
,用于镜像和目标名称。
OPTIONS¶ 选项
--help, -h¶ --help,-h ¶
Print usage statement 打印使用说明
EXAMPLES¶ 示例
Tag specified image with an image name defaulting to :latest.
使用默认为:latest 的镜像名称标记指定的镜像。
$ podman tag 0e3bbc2 fedora:latest
Tag specified image with fully specified image name.
使用完全指定的镜像名称标记指定的镜像。
$ podman tag httpd myregistryhost:5000/fedora/httpd:v2
Tag specified image with multiple tags.
使用多个标签为指定的图像打标签。
$ podman tag mymariadb mycontainerregistry.io/namespace/mariadb:10 mycontainerregistry.io/namespace/mariadb:10.11 mycontainerregistry.io/namespace/mariadb:10.11.12
SEE ALSO¶ 参见 ¶
HISTORY¶ 历史 ¶
December 2019, Update description to refer to ‘name’ instead of ‘alias’ by Sascha Grunert sgrunert@suse.com
July 2017, Originally compiled by Ryan Cole rycole@redhat.com
2019 年 12 月,由 Sascha Grunert sgrunert@suse.com 更新描述,将“别名”改为“名称”。2017 年 7 月,由 Ryan Cole rycole@redhat.com 最初编写。