how do I clean up my docker host machine

前端 未结 6 1846
轮回少年
轮回少年 2021-01-30 09:10

As I create/debug a docker image/container docker seems to be leaving all sorts of artifacts on my system. (at one point there was a 48 image limit) But the last time I looked t

6条回答
  •  生来不讨喜
    2021-01-30 10:10

    Sometimes you wont have Status, it'll just be blank.

    here is my version:

    docker rm -f $(docker ps -a | env -i grep -v Up | tail -n+2 | cut -d ' ' -f 1)
    

提交回复
热议问题