1

我需要更改 Docker 存储库的名称。例如...

原来的:

[root@docker ~]# docker images
REPOSITORY                              TAG                 IMAGE ID            CREATED             SIZE
registry.access.redhat.com/rhel7/rhel   latest              e64297b706b7        2 weeks ago         201MB

重命名:

[root@docker ~]# docker images
REPOSITORY                              TAG                 IMAGE ID            CREATED             SIZE
rhel                                    7.5                 e64297b706b7        2 weeks ago         201MB
4

1 回答 1

2

您不会“重命名”图像。你看到的docker images是标签。您可以添加新标签或删除标签,但不能“重命名”。尝试使用您想要的新标签标记您的图像,然后(可选)删除旧标签,例如:

docker tag registry.access.redhat.com/rhel7/rhel:latest rhel:7.5
docker rmi registry.access.redhat.com/rhel7/rhel:latest # remove old tag
于 2018-07-04T20:04:14.240 回答