Hello @Doum
Issue you’re facing seems to be the same as 'No space left on device' while uploading a CSV
A short answer: this problem can be solved by passing
--shm-size=256m
to docker, so for example fordocker run
you can pass it like this (I tested this and it works, I was able to upload a file larger than 100mb)
or for docker compose changes:
...
services:
baserow:
shm_size: '256mb'
...