how do I clean up my docker host machine

前端 未结 6 1849
轮回少年
轮回少年 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 09:49

    I would also like to contribute to this with some commands that were added to version 1.13.0:

    $ docker system prune
    $ docker container prune
    $ docker image prune
    $ docker volume prune
    $ docker network prune
    

    see changelog: 1.13.0 (2017-01-18)

    Add new docker system command with df and prune subcommands for system resource management, as well as docker {container,image,volume,network} prune subcommands #26108 #27525 / #27525

提交回复
热议问题