Originally created by @Genie23 on GitHub (Jan 25, 2024).
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?
Originally created by @Genie23 on GitHub (Jan 25, 2024).
# 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 on GitHub (Apr 8, 2024):
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
```bash
sudo mv /var/lib/docker /run/media/user/myssd/
sudo ln -s /run/media/user/myssd/docker/ /var/lib/docker
```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @Genie23 on GitHub (Jan 25, 2024).
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 on GitHub (Apr 8, 2024):
It sounds like you WSL may have some limit?
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