Configuration Problem: Library not writable

Although I don’t use the Docker version myself, there shouldn’t be a need for significant changes since it’s pre-configured. However, if the deployment process was faulty, you might want to start fresh. If this is a clean install, consider removing your Xibo setup with docker-compose down

Then redeploy following the Docker Manual?

If you’d rather not re-deploy, you can try the following steps:

Navigate to the Directory with cd /opt/xibo

If it doesn’t exist, create it with mkdir /opt/xibo

Make sure to set the appropriate permissions (start with 777, and then tighten it to something like 750).

Check your docker-compose.yml file and verify that the mount location for the library is correct. Here’s the relevant section for reference:

You can also modify the path before the “:” to point to a different location, for example:

- "/path/to/xibo/library:/var/www/cms/library:Z"

After making these changes, restart the container to apply them.