docker-minecraft-bedrock-server
docker-minecraft-bedrock-server copied to clipboard
worlds folder missing / world won't save
Hi,
I'm using your Docker on OMV4 and its running pretty fine. Thanks for your work! My problem is, that every time my server reboots/the docker image stops/restarts the world and everything my kid has built is gone and a new world is created. I have no worlds folder in my /data folder. I have tried setting up, everything fresh, but it didn't work.
Do you have any idea why that is?
Thanks in advance!
Can you provide the docker run command that you are using?

I'm running this via Docker GUI from OMV. Is this what you need?
I'm not familiar with that management platform but from the screenshot I can see that
- you need to specify the container path to be
/dataand the host path will be whatever path works for you on the host machine - you should not set the data volume to be read-only (aka "R/O") since it needs to write the world data there

makes sense. ;-)
But when I do and restart, I get this:
/opt/bedrock-entry.sh: line 73: /data/bedrock_server-1.14.32.1: Permission denied
after some work I'm pretty sure it has something to with rights?.

the /data folder will not map correctly and when the server is running it will always go back to R/O and the container path is broken like in my picture above.
That is caused by the host volume you are using has the noexec flag/option on it. You will need to change that in order to attach that particular volume as /data since the Bedrock executable is placed and executed from there.