Hello, I am not overly technical but happy to work with anyone willing to help, please be kind.
I am self hosting Nextcloud using the following docker compose file:
cat ~/docker-compose/nextcloud/docker-compose.yml
services:
nextcloud:
image: nextcloud
container_name: nextcloud
restart: unless-stopped
ports:
- 4443:80
volumes:
- ./nextcloud:/var/www/html
- /media/drive1/photos:/photos
environment:
- MYSQL_HOST=db
- MYSQL_PASSWORD=example
- MYSQL_USER=root
- MYSQL_DATABASE=nextcloud
db:
image: mysql:5.7
container_name: nextcloud_db
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=example
volumes:
- ./db:/var/lib/mysql
I am signed in via the Android app, but I can’t seem to be able to delete files from my external storage. I did a whole lot of research and would like to think it’s not a permissions error:
ls -la /media/drive1 | grep photo
drwxr-x--- 26 www-data www-data 4096 Nov 2 09:20 photos
I have also confirmed that the share is not in read-only mode (see screenshot)
Error also attached.
What could I be missing?
Many thanks in advance,
hooda