Docker之批量刪除鏡像/容器腳本

    使用一段時間Docker以後,本地會有不少的沒用了的鏡像,逐條手動刪除很費時,因此弄個腳本批量刪除,以下,刪除以192.168.33.10開頭的鏡像名稱,只要這個鏡像沒有被使用,會被刪除。mysql

    List-1sql

docker images|awk '{print $1":"$2}'|grep 192.168.33.10|xargs -t docker rmi

    以下如果,除了mysql、postgresql、kibana、elastic、mongo除外的沒有在運行的容器會被刪除,xargs的-t參數會打印出執行的命令docker

    List-2bash

docker ps -a|egrep -v 'mysql|post|kiban|elas|mongo'|awk '{print $1}'|xargs -t docker rm

    有些時候會有些<none>的鏡像,以下List-3,多是臨時產生的,刪除這種鏡像,直接用List-1中的是不行的post

    List-33d

mjduan@mjduan:/opt/tmp/images$ docker images
REPOSITORY                             TAG                 IMAGE ID            CREATED             SIZE
<none>                                 <none>              fb522ae76d1c        3 days ago          993MB
<none>                                 <none>              4966b6e23631        3 days ago          662MB
<none>                                 <none>              3d30ff829e3d        3 days ago          738MB
<none>                                 <none>              82d66f605ccd        3 days ago          738MB
<none>                                 <none>              53df78f6d849        3 days ago          683MB
<none>                                 <none>              dd914a092541        3 days ago          738MB

    List-4postgresql

#這種,注意awk中要用\t隔開,後面的awk才能獲得咱們想要的$2
docker images|awk '{print  $1"\t"$3}'|grep "<none"|awk '{print $2}'| xargs -t docker rmi
#或者下面這種
docker images|grep "<none"|awk '{print $3}'|xargs -t docker rmi
相關文章
相關標籤/搜索