Docker delete images

1. docker images 

docker images to list all images like below:

spring-boot-cloud/zipkin       latest        c74342c90331      20 minutes ago    712 MB

spring-boot-cloud/svcb-service    latest    4f15390dfc86   21 minutes ago   736 MB


2. docker stop 8209cb86fe8f

Use this command with container id to stop container


3. docker rm 8209cb86fe8f

Stop container with container id


4.docker rmi c74342c90331

Delete this image


If u want to delete image, u need to delete the container first and then delete image.  

5.docker rmi $(docker images -q)

delate all images

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容