重命名Docker仓库

时间:2018-07-04 19:55:55

标签: docker docker-repository

我需要更改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

1 个答案:

答案 0 :(得分:1)

您不“重命名”图像。您在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