Docker image to run a dedicated palworld game server.
2.5K
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
$ 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"
Content type
Image
Digest
sha256:8f02d3d1b…
Size
188.9 MB
Last updated
about 2 years ago
docker pull jcivitell/palworld