Palworld is an action-adventure survival game by Japanese developer Pocket Pair. The game is set in an open world populated with animal-like creatures known as "Pals". The players can battle and capture Pals in order to use them for base building, traversal, and combat. Palworld can be played either solo, or online by up to 32 players on one server. Announced in 2021, it launched via early access for Windows, Xbox One, and Xbox Series X/S in January 2024.1
This Docker image contains the dedicated server of the game.
Running a Palworld dedicated server
- Run using a bind mount for data persistence on container recreation. Replace the following fields before executing the command:
$ mkdir -p $(pwd)/pw-data
$ chmod 777 $(pwd)/pw-data # Makes sure the directory is writeable by the unprivileged container user
$ docker run -d --net=host \
-v $(pwd)/pw-data:/home/steam/pw-dedicated/ \
--name=pw-dedicated jcivitell/palworld
The container will automatically update the game on startup, so if there is a game update just restart the container.
Feel free to overwrite these environment variables, using -e (--env):
PW_SERVERNAME=""
PW_PORT=8211
PW_RCONPORT=25575
PW_PW="changeme"
PW_MAXPLAYERS=32
PW_LOCATION="de"
PW_ADMINPW="changeme"