What is Docker.qcow2?

2020-03-11 09:19发布

I was looking at my disk with DaisyDisk and I have a 30GB something called Docker.qcow2. More specifically, DaisyDisk puts it under ~/Library/Containers/com.docker.docker/Data/vms/0/Docker.qcow2. Is it some kind of cache? Can I delete it? I have a lot of images from old projects that I won't ever use and I'm trying to clear up my disk.

标签: docker
2条回答
Lonely孤独者°
2楼-- · 2020-03-11 09:37

If you stumbled upon this, you're probably not stoked about a 64gb file. If you open up Docker > Preferences, you can tone it down quite a bit to a more reasonable size. Doing this will delete the old cow file, and that will delete your containers, so be careful.

enter image description here

查看更多
虎瘦雄心在
3楼-- · 2020-03-11 09:47

The .qcow2 file is exposed to the VM as a block device with a maximum size of 64GiB by default. As new files are created in the filesystem by containers, new sectors are written to the block device. These new sectors are appended to the .qcow2 file causing it to grow in size, until it eventually becomes fully allocated. It stops growing when it hits this maximum size.

You can stop Docker and delete this file, however deleting it will also remove all your containers and images. And Docker will recreate this file on start.

查看更多
登录 后发表回答