-
|
I'm trying to install OpenCloud as a separate Docker Container on an openmediavault system. I've made sure to copy the opencloud-compse directory structure and files to my OMV Docker share 'appdata' The OpenCloud log indicates that there's an issue with access to /etc/opencloud/opencloud.yaml: Using WinSCP I can tell that there is no directory /etc/opencloud for this file opencloud.yaml.
|
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 10 replies
-
|
The 1. Why
|
Beta Was this translation helpful? Give feedback.
-
|
Ha! same issue with the storage directory share 'data'/opencloud |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
Thank you for being VERY patient with me, @faketut I do remember having done something with www-data at some point when I was following the OpenCloud Docker or Docker Compose installation guide. I need to revisit that. |
Beta Was this translation helpful? Give feedback.
-
|
Okay! We've past that first bridge. I'm in OpenCloud as admin.
|
Beta Was this translation helpful? Give feedback.



The
permission deniedis the only real blocker β everything below theCould not create config:line is just OpenCloud complaining that, because it couldn't writeopencloud.yaml, it never got ajwt_secret. Fix the write permission and the rest goes away. But your compose file has three separate issues stacked on top of each other, so let me unpack them.1. Why
/etc/opencloud/opencloud.yamlcan't be createdInside the container,
/etc/opencloudis your bind mount:- ./config/opencloud:/etc/opencloudSo the container is really trying to write to
./config/opencloud/opencloud.yamlon the host. The container is running as UID1000/ GID100, but the host directory was created by root (or by OMV'β¦