"I do not have read/write permissions to /palworld!"
Closed this issue · 6 comments
Thank you for creating such great material.
However, when I try to run it, it doesn't work as shown below.
This is the details of what I did.
- sudo apt-get install docker.io
- sudo ln -sf /usr/bin/docker.io /usr/local/bin/docker
- docker run -d
--name palworld-server
-p 8211:8211/udp
-p 27015:27015/udp
-v $(pwd)/game:/palworld/
-e PLAYERS=32
-e PORT=8211
-e COMMUNITY=false
--restart unless-stopped
nitrog0d/palworld-arm64
I proceeded like this, but at first PORT was displayed, but after that, STATUS kept showing Restarting.
Could you please let me know if there is anything I did wrong?
Try to check logs of the container? Remove -d or run docker logs
@jwc339 Did you create the palworld directory? And after that you need to chown 777 ./palword
. If you don't the containers will have permission errors.
@jwc339 Did you create the palworld directory? And after that you need to
chown 777 ./palword
. If you don't the containers will have permission errors.
Could you explain a little more about what to do?
Thank you for your reply.
Step 2 in the Getting Started guide: https://github.com/nitrog0d/palworld-arm64?tab=readme-ov-file#getting-started
Before you run the docker command first create a directory palworld
and then run chmod 777 ./palworld
.
Then you can run the same docker command you used.
Thank you. Run.
Step 2 in the Getting Started guide: https://github.com/nitrog0d/palworld-arm64?tab=readme-ov-file#getting-started
Before you run the docker command first create a directory
palworld
and then runchmod 777 ./palworld
.Then you can run the same docker command you used.
The server was successfully launched!!
thank you
The order I followed is as follows:
Connect using Putty.exe.
- sudo su
- mkdir palworld
- chmod 777 palworld
- chown -R 1000:1000 palworld/
- vi docker-compose.yml
- version: '3.9'
services:
palworld-server:
image: 'nitrog0d/palworld-arm64:latest'
container_name: 'palworld-server'
ports:
- '8211:8211/udp'
environment:
- ALWAYS_UPDATE_ON_START=true
-MULTITHREAD_ENABLED=true
- COMMUNITY_SERVER=false
restart: 'unless-stopped'
volumes:
- './palworld:/palworld' - docker-compose up -d
- docker ps
Confirmed with .
thank you!