Installing large FPGA development IDE on ubuntu container

Hello!

I would like to install a ~150GB development environment on webtop’s latest ubuntu-xfce image.
My problem is that I’m unable to copy the installer (~70GB) .tar file on the container:

C:\Users\Kolos Koblasz\Downloads\privát>docker cp Xilinx_Unified_2022.1_0420_0327.tar.gz 1d5944b936c81a10eaf667c8ab5d15e1b78b731898e2a4179a65b20dbd9cdbbc:/config/Downloads/
Error response from daemon: Error processing tar file(exit status 1): write /config/Downloads/Xilinx_Unified_2022.1_0420_0327.tar.gz: no space left on device

I’m having problem increasing the disk space available for my containers.

I’m running docker on a Win10 host with default settings.
Docker Version: Docker Desktop 4.10.1 (82475)

docker-compose file:

version: “2.1”

services:

webtop:

image: lscr.io/linuxserver/webtop:ubuntu-xfce

container_name: webtop

security_opt:

  - seccomp:unconfined #optional

environment:

  - PUID=1000

  - PGID=1000

  - TZ=Europe/London

  - SUBFOLDER=/ #optional

volumes:

  - /path/to/data:/config

ports:

  - 3000:3000

restart: unless-stopped