Why is docker image eating up my disk space that is not used by docker

前端 未结 9 2040
长发绾君心
长发绾君心 2020-12-12 11:07

I have setup docker and I have used completely different block device to store docker\'s system data:

[root@blink1 /]# cat /etc/sysconfig/docker
# /etc/sysc         


        
9条回答
  •  借酒劲吻你
    2020-12-12 11:58

    Docker prune by default does not remove volumes,

    you can try something like

    docker volume prune -f
    

提交回复
热议问题