How can I delete Docker's images?

后端 未结 17 1266
执笔经年
执笔经年 2020-11-29 14:27

I\'ve the following images:

alex@alexvps:~$ sudo docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             VIRTUAL SIZE
&         


        
17条回答
  •  心在旅途
    2020-11-29 15:20

    In order to delete all images, use the given command

    docker rmi $(docker images -q)
    

    In order to delete all containers, use the given command

    docker rm $(docker ps -a -q)
    

    Warning: This will destroy all your images and containers. It will not be possible to restore them!

    This solution is provided by Techoverflow.net.

提交回复
热议问题