When I created a Docker container today, I accidentally entered the wrong name for the image. As a result, after the container was successfully created, two images with the same ID appeared: Execution failed when deleting using docker rmi e4a35914679d:
The prompt should be that there are two local files for this id and they cannot be deleted using the id. So I want to delete all images docker rmi $(docker images -q), and the following error occurs
Later, I saw on Stack Overflow that I used repository and tag to do this, so I executed docker rmi docker.io/redis:3.2 When querying again, there is only one image left, so delete it. So, you can use repository:tag combination to delete a specific image. Additional knowledge: Docker deletes images with blank TAG and REPOSITORY I learned docker initially and found a problem. After misoperation. A blank image with only IMAGE ID will be left. How to delete it, it took several attempts before I succeeded. When you want to delete the mirror with blank TAG and blank REPOSITORY, list the current mirrors [root@iZ25kr7psegZ ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE azkaban_centos latest 8993c0c20f01 24 hours ago 244MB <none> <none> d2dcb7c1f1ce 2 days ago 1.08GB mysql latest 990386cbd5c0 7 days ago 443MB centos latest 9f38484d220f 2 months ago 202MB hello-world latest fce289e99eb9 4 months ago 1.84kB Execute the delete statement docker rmi IMAGE ID
This prompts you to stop the container that the image depends on
Then delete the container.
Then you can delete this blank image. [root@iZ25kr7psegZ ~]# docker rmi d2dcb7c1f1ce Deleted: sha256:d2dcb7c1f1ce916ea67a0a6c63cda40c62fa8dbc985845e64f3fafe9a37664f1 Deleted: sha256:86ad6d366bb4d0c9e4b176bc220ff8d421902e2bcb197c7c017f8da854c3c72d Deleted: sha256:128e444c34b373f5e553883c65f676efdb2be22684bcbcf141fb724a7b3de316 Deleted: sha256:15d26edbae6fafd6acad6e3308445846202230b66c6199cb236268f932b59ce8 Query the mirror list again [root@iZ25kr7psegZ ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE azkaban_centos latest 8993c0c20f01 24 hours ago 244MB <none> <none> adbcb407e207 2 days ago 571MB mysql latest 990386cbd5c0 7 days ago 443MB centos latest 9f38484d220f 2 months ago 202MB hello-world latest fce289e99eb9 4 months ago 1.84kB It was found that the size was reduced from 1.08G to 571M. This indicates that there is another container storing this image. Think of it like a Russian nesting doll. It needs to be deleted layer by layer. It must be because of too many docker commit operations. During repeated operations, it was found that sometimes one image corresponds to different containers. A stop and rm operation is performed for each container ID prompted. It should be that the image is loaded repeatedly due to too frequent startup times. The final result is of course a clean deletion. [root@iZ25kr7psegZ ~]# docker rmi cb9f332b969f Deleted: sha256:cb9f332b969ff425ef7bf781a1d7dff720dfa32a6e77a20347552b76f6b763eb Deleted: sha256:2a9ae33d11aadc05d24b58f67c6eb577c64eceff0528d06207e49963257e5f24 [root@iZ25kr7psegZ ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE azkaban_centos latest 8993c0c20f01 24 hours ago 244MB mysql latest 990386cbd5c0 7 days ago 443MB centos latest 9f38484d220f 2 months ago 202MB hello-world latest fce289e99eb9 4 months ago 1.84kB The above operation of deleting two images with the same ID under Docker 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:
|
<<: Table Tag (table) In-depth
>>: JavaScript to achieve product magnifying glass effect
Table of contents Preface Code Implementation Ide...
Preface This article mainly introduces the releva...
This article shares the specific code of JS+AJAX ...
As the most commonly used layout element, DIV play...
There is a requirement to realize the shaking eff...
Table of contents Previous words Usage scenarios ...
This article mainly introduces the principle and ...
Error: Connection to blog0@localhost failed. [080...
The machines in our LAN can access the external n...
Preview versions of Safari (Technology Preview 10...
This article example shares the specific code of ...
This article introduces an example of using HTML+...
Table of contents Install jupyter Docker port map...
Download opencv.zip Install the dependencies ahea...
The following demonstration is based on MySQL ver...