NAME 名称

podman-rename - Rename an existing container
podman-rename - 重命名现有容器

SYNOPSIS 概要

podman rename container newname
podman 重命名容器 新名称

podman container rename container newname
podman 容器重命名 容器 新名称

DESCRIPTION 描述

Rename changes the name of an existing container. The old name is freed, and is available for use. This command can be run on containers in any state. However, running containers may not fully receive the effects until they are restarted - for example, a running container may still use the old name in its logs. At present, only containers are supported; pods and volumes cannot be renamed.
重命名更改现有容器的名称。旧名称被释放,并可供使用。此命令可在任何状态下运行容器上运行。但是,运行中的容器可能在重新启动之前无法完全接收效果 - 例如,运行中的容器可能仍在其日志中使用旧名称。目前,仅支持容器;无法重命名 pod 和卷。

OPTIONS 选项

EXAMPLES 示例

Rename container with a given name.
使用给定名称重命名容器。

$ podman rename oldContainer aNewName

Rename container with a given ID.
使用给定 ID 重命名容器。

$ podman rename 717716c00a6b testcontainer

Create an alias for container with a given ID.
为具有给定 ID 的容器创建一个别名。

$ podman container rename 6e7514b47180 databaseCtr

SEE ALSO 参见 ¶

podman(1)