DEV Community

Discussion on: How to reduce size of docker data volume in Docker Desktop for Windows v2

Collapse
 
tyutyutyu profile image
István Földházi • Edited

One-liner:

Optimize-VHD -Path $Env:LOCALAPPDATA\Docker\wsl\data\ext4.vhdx -Mode Full
Enter fullscreen mode Exit fullscreen mode

If the above command fails with "The process cannot access the file because it is being used by another process.", stop services and tasks using that file:

net stop com.docker.service
taskkill /IM "docker.exe" /F
taskkill /IM "Docker Desktop.exe" /F
wsl --shutdown
Enter fullscreen mode Exit fullscreen mode