4

I have been playing around with Docker under Windows 10 (using Hyper-V virtualization). After having finished, I decided to remove all running containers and images using the following command:

docker rm $(docker ps -a -q)
docker rmi $(docker images -q)

However it seems that the disk space is not reclaimed and I still have a whopping 38GB used by Docker on my ssd. What is the exact procedure to release that space? Looking at the my disk usage stats, I can see that that space is entirely used by the MobiLinux virtual disk...

Any procedure to shrink this on Windows 10 would be greatly appreciated!

Output of docker volume ls shown below:

enter image description here

Edit: this has been confirmed as a bug by the docker for windows team. I have opened an issue, which can be tracked here: https://github.com/docker/for-win/issues/244

BigONotation
  • 4,406
  • 5
  • 43
  • 72

0 Answers0