dockur / windows

Windows inside a Docker container.
MIT License
17.99k stars 1.57k forks source link

ERROR: Not enough free space in /storage #819

Open aritus007 opened 1 week ago

aritus007 commented 1 week ago

Operating system

Debian 12

Description

On Debian 12 (with Kicksecrue installation), I run:

$ sudo docker run -it --rm --name windows -p 8006:8006 --device=/dev/kvm --cap-add NET_ADMIN --stop-timeout 120 dockurr/windows

Installation fails with:

... ❯ Downloading product information from Microsoft server... ❯ Downloading Windows 11... /storage/tmp/win11x64.esd 100%[========================================================================================================================================>] 3.88G 64.7MB/s in 63s ❯ Extracting Windows 11 bootdisk... ❯ ERROR: Not enough free space in /storage, have 13 GB available but need at least 15 GB.

Docker compose

sudo docker run -it --rm --name windows -p 8006:8006 --device=/dev/kvm --cap-add NET_ADMIN --stop-timeout 120 dockurr/windows

Docker log

`Unable to find image 'dockurr/windows:latest' locally latest: Pulling from dockurr/windows 283063de1730: Pull complete 45cdc18e988e: Pull complete 258ef0193c20: Pull complete b656c1fe9d3b: Pull complete fa540d1a3602: Pull complete d756229d396b: Pull complete Digest: sha256:2624effee457dfd6d40ac1031084bf57640d9149df32ea7fd13504b86966c412 Status: Downloaded newer image for dockurr/windows:latest ❯ Starting Windows for Docker v4.00... ❯ For support visit https://github.com/dockur/windows ❯ CPU: Intel Core TM i9 9900K CPU | RAM: 30/63 GB | DISK: 17 GB (ext4) | HOST: 6.1.0-23-amd64...

❯ Requesting Windows 11 from Microsoft server... ❯ ERROR: Microsoft blocked the automated download request based on your IP address. ❯ Failed to download Windows 11, will try a diferent method now... ❯ Downloading product information from Microsoft server... ❯ Downloading Windows 11... /storage/tmp/win11x64.esd 100%[========================================================================================================================================>] 3.88G 64.7MB/s in 63s
❯ Extracting Windows 11 bootdisk... ❯ ERROR: Not enough free space in /storage, have 13 GB available but need at least 15 GB. `

Screenshots (optional)

No response

kroese commented 1 week ago

I think the message is clear: there is only 17 GB of space available which is not enough.

Bind the /storage folder to a volume like this: -v "/home/example:/storage" and make sure the folder /home/example has space left.

walticogt commented 4 days ago

Me too