Palworld Xbox Dedicated Server Docker set up guide Palworld has been released in early access! But how do you start an Xbox
Palworld has been released in early access! But how do you start a server to play with your friends? This guide will show you how to set up a Palworld Server using Docker and get you on your way to playing Palworld!
The following steps will guide to through the Docker Desktop installation:
If output is shown as the example above, good job! You’ve now got Docker up and running! Let’s move forward with the next steps.
Now you’ve got Docker up and running, it is time to prepare the folder to make sure that your configuration persists if you shut down your server. This step is really quite simple.
Now you are almost ready to start your server. For this guide, we will use Docker Compose to configure your server.
services:
palworld:
image: thijsvanloef/palworld-server-docker
restart: unless-stopped
container_name: palworld-server
ports:
- 8211:8211/udp
- 27015:27015/udp
environment:
- PORT=8211
- PLAYERS=16
- MULTITHREADING=false
- COMMUNITY=false # Enable this if you want your server to show up in the community servers tab, USE WITH SERVER_PASSWORD!
# Enable the environment variables below if you have COMMUNITY=true
# - SERVER_PASSWORD="worldofpals"
# - SERVER_NAME="World of Pals"
# - ADMIN_PASSWORD="someAdminPassword"
volumes:
- /c/Users/thijs/Desktop/Palworld:/palworld/
Now all files are in order and we are ready to move forward and start the server!
cd C:\Users\thijs\Desktop\Palworld
docker-compose up -d
Now if you’ve done everything correctly, your folder should now look like this:
Before you and your friends can connect to the Palworld server, you’ll need to make changes to your firewall to allow connections on specific ports.
By default, a Palworld server uses the following ports:
Default Port (UDP only) | Port Usage | Description |
---|---|---|
27015 | Query Port | This is the port that you need to enter in the game when you first connect to a dedicated server. |
8211 | Game Port | This port can be redirected at the moment. It is automatically incremented if multiple instances of the server are launched and the default is in use already. |
Now you can add these port exceptions to the firewall by hand, but let’s not, that takes way too much time, let’s do something different:
netsh advfirewall firewall add rule name="Palworld Port 27015" dir=in action=allow protocol=UDP localport=27015
netsh advfirewall firewall add rule name="Palworld Port 8211" dir=in action=allow protocol=UDP localport=8211
And now your firewall has been magically configured!
Now, let’s move forward by port forwarding. Before doing that, you would want to set a static IP address on your computer.
After you’ve done that, you can move forward with the actual port forwarding:
First, you’ll need to know what the IP addresses of your computer and router are. This can be done by doing the following:
You’ll see some information about the network settings:
You’ll want to make a note of the “Default Gateway” & IPv4 address. In my case, it is:
You’ll need to enter this address in your browser and log in to your router. Visit this site to find your specific model and were to find the Port Forward settings.
Once you’ve navigated to the Port Forwarding rules, please enter the following information:
Rule Name | IP Address | Port Range | Protocol |
---|---|---|---|
Palworld Query Port | -Your IPv4 Address- | 27015 – 27015 | UDP |
Palworld Game Port | -Your IPv4 Address- | 8211- 8211 | UDP |
Now hit save and your Palworld server is open to the public!
But your friends still don’t know where to find you. For that, you’ll need your public IP address. You can use a site like www.whatismyip.com to get your public IP address.
Woohoo! You’ve made it to the last step! You’re in the home stretch.
Now you can finally boot up your game.
Once in the main menu, click on Dedicated Server and then the “Join” on the bottom of the screen.
That’s it! You now have a running Palworld server using Docker!
Keep in mind, if you no longer want to use the server, you can use the following 2 commands to shut the server down (this will not remove your save files):
cd C:\Users\thijs\Desktop\Palworld
docker-compose down
You may also like:
Palworld Xbox Dedicated Server Docker set up guide Palworld has been released in early access! But how do you start an Xbox
Palworld Port Forwarding Guide Palworld has been released in early access! But how do you start a server to play with your
Cookie | Duration | Description |
---|---|---|
__gads | The __gads cookie, set by Google, is stored under DoubleClick domain and tracks the number of times users see an advert, measures the success of the campaign and calculates its revenue. This cookie can only be read from the domain they are set on and will not track any data while browsing through other sites. | |
_ga | The _ga cookie, installed by Google Analytics, calculates visitor, session, and campaign data and also keeps track of site usage for the site's analytics report. The cookie stores information anonymously and assigns a randomly generated number to recognize unique visitors. | |
_gid | Installed by Google Analytics, _gid cookie stores information on how visitors use a website, while also creating an analytics report of the website's performance. Some of the data that are collected include the number of visitors, their source, and the pages they visit anonymously. | |
cookielawinfo-checbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |
34 Comments on Palworld Dedicated Server Docker set up guide
Do you have ARM docker version?
I tried your docker image. However. it shows exec format error.
Thank you very much.
I do not have an ARM image yet, could you open a feature request on https://github.com/thijsvanloef/palworld-server-docker/issues/new/choose
I have docker on my nas. Can you help me to install?
Hi Larifair, currently I am unable to help individuals set up their server. The process of setting up the server in a Docker container on a NAS should be the same as setting it up on windows/linux (Given that the NAS meets the hardware requirements).
Hey Thijs,
Thank you so much for the docker image and the helpful write ups. I used them to host my server from Ubuntu and its been working well. I am fairly new to docker and I have a user who's save file appears to be corrupted. I hosted a second server and got their hex code so I know which .sav file is theirs on the main server.
My question is where should I delete it from? When I search .save files I see two in the overlay2 files, one in /diff and one in /merged. I just want to make sure I don't mess up the server or anyone else's characters.
Thanks!
Hi Matt, I am still lacking some information to be able to help you resolve your issue. Could you please open an issue on the GitHub repository?
I ended up figuring it out. I needed to go into the container via bash and delete the .sav file that had the issue from within. Nothing wrong with your setup at all just my inexperience with docker. Thanks for replying!
Glad you were able to figure it out! 🙂
Executing usermod...
usermod: no changes
*****STARTING INSTALL/UPDATE*****tid(23) burning pthread_key_t == 0 so we never use it
Redirecting stderr to '/home/steam/Steam/logs/stderr.txt'
Logging directory: '/home/steam/Steam/logs'
src/tier0/threadtools.cpp (4213) : Probably deadlock or failure waiting for thread to initialize.
Thread failed to initialize
[ 0%] Checking for available updates...
src/tier0/threadtools.cpp (4213) : Probably deadlock or failure waiting for thread to initialize.
Thread failed to initialize
failed to init when start docker server
is there any solution?
Please open a bug report on my github repository: https://github.com/thijsvanloef/palworld-server-docker/issues/new?assignees=&labels=&projects=&template=bug_report.md&title=
Thx! worked well) if i have 32gb of ram - how much should i set for docker?
Depends on what OS you are running docker, however 32GB should be plenty.
i have installed the server in my nas and i'm not sure if i need to configure the fire-wall form my nas
beacause i can connecte to the server but not my friends(sorry if it's a stupid question i'm a beginner)
Hi Dylseat, that probably means that the port forward has not been successful. You can check out my port forwarding guide for that: https://tice.tips/gaming/palworld-port-forward/
Hello!
A new patch came out and now I'm unable to access my server. Says im trying to join a match which is on a wrong version. How do you proceed to update the server to make it work again?
You would just need to restart the container: docker restart palworld-server
On step 4, it shows as "no configuration file provided: not found" when typing docker-compose up -d
How may I fix this?
Please make sure you are in the same folder as the docker-compose.yml when you run "docker compose up -d"
You should have specified to remove the : Colon in the C:\Users\ paste for the docker config YML. I overlooked this and it took 2 hours of failing to realize lol
I;ve added it, thank you.