I have WSL installed as well as Docker Desktop.
I tried to clean up docker as much as I could by running
docker system prune -a
docker volume rm $(docker volume ls -q -f dangling=true)
Then I verified with
❯ docker system df
TYPE TOTAL ACTIVE SIZE RECLAIMABLE
Images 0 0 0B 0B
Containers 0 0 0B 0B
Local Volumes 0 0 0B 0B
Build Cache 0 0 0B 0B
However, I see that I still have nearly 12G used by WSL.
I assume this file is docker related. Why is it so large despite me removing all containers and volumes?
How do I shrink it (or can I delete it?)