Iâm trying to run Nextcloud on my Raspberry Pi 4 using the official Docker image, which is Nexcloud 24.0.3.2, currently.
I am able to pull the image using the command âdocker pull nextcloudâ, and have verified that the image appears in the list of docker images from âdocker image lsâ
But when I attempt to actually start a container from the image, I get an error saying âtouch: setting times of â/var/www/html/nextcloud-init-sync.lockâ: Operation not permittedâ
I get this same error message regardless of whether I try the nextcloud:latest or nextcloud:apache images(the nextcloud:none image is a previous version that has been partially deleted improperly, I think).
I donât have a very thorough understanding of Docker, but the nextcloud imageâs Github readme says that /var/www/html is an âunnamed Docker volumeâ used for data storage.
Do I need to give myself write permissions for this Docker volume, so I can touch it? How would I even set permissions for stuff inside a Docker volume?