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
Due to company requirements, two nginx servers in...
This article shares the specific code of node+exp...
I have been learning about responsive design rece...
Table of contents 1. Scope 2. Function return val...
Try installing via pip in a virtual environment: ...
#Case: Query employee salary levels SELECT salary...
As the company's influence grows and its prod...
Table of contents 1. Bootstrap5 breakpoints 1.1 M...
An event is an action performed by the user or th...
Pull the image docker pull mysql View the complet...
Many tables in MySQL contain columns that can be ...
Preface NFS (Network File System) means network f...
This article shares the specific code of JavaScri...
The reason for writing this article is that I wan...
Table of contents Overview Code Implementation Su...