When using docker images, images with both REPOSITORY and TAG set to none may appear, as shown below: At this point, we can rename the image
Additional knowledge: Docker image rename The docker image name was accidentally written incorrectly, for example, you wanted to name it ubuntu1604-arm-qt, but wrote it as unbuntu1604-arm-qt. How to change it back? Rename with docker tag docker images find image_id The image id found is efeb4214cfc4. haojc@ubuntu:~/docker/ubuntu1604-arm-qt$ docker images REPOSITORY TAG IMAGE ID CREATED SIZE sword2000/unbuntu1604-arm-qt 1.0 efeb4214cfc4 13 hours ago 7.05GB hello-world latest fce289e99eb9 7 months ago 1.84kB Rename with docker tag <image_id>
Then delete the original image name docker rmi sword2000/unbuntu1604-arm-qt:1.0 haojc@ubuntu:~/docker/ubuntu1604-arm-qt$ docker rmi sword2000/ubuntu1604-arm-qt:1.0 Untagged: sword2000/unbuntu1604-arm-qt:1.0 haojc@ubuntu:~/docker/ubuntu1604-arm-qt$ docker images REPOSITORY TAG IMAGE ID CREATED SIZE sword2000/ubuntu1604-arm-qt 1.0 efeb4214cfc4 13 hours ago 7.05GB hello-world latest fce289e99eb9 7 months ago 1.84kB The above Docker renaming image name and TAG operation is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Introduction to several ways to introduce CSS in HTML
>>: Detailed explanation of Vue development Sort component code
Phenomenon: After MySQL version 5.7, the default ...
Table of contents K8S Master Basic Architecture P...
Use meta to implement timed refresh or jump of th...
Due to work requirements, I recently spent some t...
1. Demand The base has 300 new servers, and needs...
Postfix is a free and open source MTA (Mail Tra...
need: Implement dynamic display of option values ...
This article shares the installation tutorial of ...
MySQL software installation and database basics a...
Table of contents Preface 1. What are Mixins? 2. ...
1. What is responsive design? Responsive design i...
XHTML defines three document type declarations. T...
Table of contents npm Install the loader Import P...
Table of contents transition hook function Custom...
1. Introduction This article describes how to use...