sickcodes / Docker-OSX

Run macOS VM in a Docker! Run near native OSX-KVM in Docker! X11 Forwarding! CI/CD for OS X Security Research! Docker mac Containers.
https://hub.docker.com/r/sickcodes/docker-osx
GNU General Public License v3.0
46.2k stars 2.47k forks source link

Unable to download docker-osx:latest image on my Windows 10 Pro #739

Open Genie23 opened 8 months ago

Genie23 commented 8 months ago

OS related issued, please help us identify the issue by posting the output of this

uname -a: MSYS_NT-10.0-19045-WOW64 Kheops 3.2.0-340.i686 2021-07-04 19:22 UTC i686 Msys The other commands are not adapted to Windows

Hello, I have a problem installing the docker-osx:latest image on Docker Desktop for Windows: no space left on device... Except that I have several hundred GB of free space on my system disk, and over a TB on my data disk. I've looked everywhere, but can't find a solution to my problem.

Could you help me?

sickcodes commented 5 months ago

It sounds like you WSL may have some limit?

cd /var/lib/docker
sudo du .

That's where the image will go, so if you can expand that drive somehow.

Alternatively, you can move the /var/lib/docker folder itself to another area, like extenal hard drive ( ). And then symlink the old directory

sudo mv /var/lib/docker /run/media/user/myssd/
sudo ln -s /run/media/user/myssd/docker/ /var/lib/docker