What is Docker.qcow2?

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


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.


I've had the same issue. Instead of deleting the file or adjusting the size using the settings simply use the following commands:

docker images

This will show all of the images on your system and the size of each image (you'd be surprised how quickly this can get out of hand).

docker image rm IMAGEID

This will remove the image with the ID that you can get from the images command above.

I use this method and it frees up a lot of disk space.

Tags:

Docker