Closed jexterliangsufe closed 9 months ago
I've also been struggling with the same issue for 10 hours. I thought it would be resolved once this PR was merged: 120, but it hasn't been resolved at all.
https://github.com/thijsvanloef/palworld-server-docker/issues/29#issuecomment-1911169646
I made a comment on this in another thread. Try it out and see if it works for you.
I made a comment on this in another thread. Try it out and see if it works for you.
Will the game data and user data be deleted after docker compose down
and docker compose up -d
?
No, it will be fine. Docker compose down only removes the container and network. The volume will be fine as long as you don't run it with the --volumes flag.
You may need to use a persistent volume instead of volume binding, persistent volumes aren't unique to the container or docker-compose but always live in Docker, and any container can attach to them
https://dev.to/darkmavis1980/how-to-persist-data-with-docker-compose-ik8 shows and example of the differences
No, it will be fine. Docker compose down only removes the container and network. The volume will be fine as long as you don't run it with the --volumes flag.
It works. Thank you
You may need to use a persistent volume instead of volume binding, persistent volumes aren't unique to the container or docker-compose but always live in Docker, and any container can attach to them
https://dev.to/darkmavis1980/how-to-persist-data-with-docker-compose-ik8 shows and example of the differences
Thank you. I will try.
Stop Docker service first, then try modifying config files? I have also encountered this problem before.
Ran into this issue while testing some other enhancements.
It appears the game saves the settings when it shuts down. So any changes you make while the server is live will be overridden.
Try editing the file with the container down.
Ran into this issue while testing some other enhancements.
It appears the game saves the settings when it shuts down. So any changes you make while the server is live will be overridden.
Try editing the file with the container down.
it works,thx
@hjkim did the updated steps solve your issue?
Describe the bug
I modify
PalWorldSettings.ini
and then usedocker compose restart
to reboot. But thePalWorldSettings.ini
doesn't change after rebooting.To Reproduce
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information)
docker-compose.yml contents
Container/Host Logs
Additional context
Add any other context about the problem here.