1、查看目前所有鏡像
docker images
#2、刪除鏡像ubuntu,提示報錯,如下圖(這裡提示鏡像有被容器再使用中)
Error response from daemon: conflict: unable to remove repository reference "ubuntu" (must force) - container 23107e15cef9 is using its referenced image 735f80812f90
解決方法如下:
1、先刪除ubuntu的容器,會存在多個容器佔用同一個鏡像的問題,請重複刪除即可(由以上報錯資訊可知:container ID:23107e15cef9 name:ubuntu)
docker rm 23107e15cef9
2、再刪除ubuntu鏡像,並查看所有鏡像,已成功刪除該鏡像
docker rmi ubuntu
推薦教學:docker教學
#以上是docker無法刪除映像檔怎麼解決的詳細內容。更多資訊請關注PHP中文網其他相關文章!