将一个ASP.NET Core的应用程序build镜像完成以后,发现有很多名字为none的镜像,SIZE还挺大,请问是什么情况?
相关问题
- Docker task in Azure devops won't accept "$(pw
- Unable to run mariadb when mount volume
- Unspecified error (0x80004005) while running a Doc
- What would prevent code running in a Docker contai
- How to reload apache in php-apache docker containe
<none>
是中间镜像(intermediate images),可以通过docker rmi $(docker images -f "dangling=true" -q)
命令删除不需要的中间镜像,详见 What are Docker <none>:<none> images?