I couldn’t copy 1.5 GB of data into Nextcloud of my admin user with unlimited quota setting.
I have more than 100 GB of available space on the mounted data folder on my Raspberry.
First, I had 779 MB of free space according to the System menu of Administration settings, then I changed my user’s quota to be 5 GB.
This is what I get now in System:
Disk
You will get a notification once one of your disks is nearly full.
Files: 1140
Storages: 3
Free Space: -1891024896 B
I have docker, all mounted folders on the same physical drive (>100 GB free space), it is the same inside the container.
I think you are on the right path.
NC is 26.0.1. Latest of the docker repo.
I have a RPi 4 and has the 64-bit kernel, but I think the user space is 32-bit only. Don’t really understand this part.
Some containers could pull and use the linux/arm64 platform images, e.g. photoprism or mariadb (arm64v8/mariadb), but nextcloud could only start up with linux/arm/v7 platform ones.
x@host:~/docker $ docker compose up -d --build
image with reference nextcloud:latest was found but does not match the specified platform: wanted linux/arm64, actual: linux/arm/v7
…when I specify these lines in the docker-compose.yml file. changing to arm64 architecture:
platform: linux/arm64
# platform: linux/arm/v7
Which is strange, as arm64 works with everything else (mariadb, photoprism, portainer), except redis and nextcloud.
That’s what I did finally. I installed Ubuntu arm64 on the Pi. It was a mess to configure the Postgres, so I finally went back to SQLite, then when I checked the System menu it show postgres being used. Interesting.
Anyways, works now. Thanks!