How can I delete Docker's images?

后端 未结 17 1253
执笔经年
执笔经年 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:06

    Since Docker ver. 1.13.0 (January 2017) there's the system prune command:

    $ docker system prune --help
    
    Usage:  docker system prune [OPTIONS]
    
    Remove unused data
    
    Options:
    -a, --all     Remove all unused images not just dangling ones
    -f, --force   Do not prompt for confirmation
        --help    Print usage
    

提交回复
热议问题