jcivitel / palworld

Repository for automated build of a Palworld dedicated game server: https://hub.docker.com/r/jcivitell/palworld

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Static Badge Docker Pulls Docker Stars Docker Image Size

What is Palworld?

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.

logo


How to use this image

Setting up game server

Running a Palworld dedicated server

  1. 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.

Configuration

Environment Variables

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"

Contributors

Contributors Display

Footnotes

  1. https://en.wikipedia.org/wiki/Palworld

About

Repository for automated build of a Palworld dedicated game server: https://hub.docker.com/r/jcivitell/palworld

License:MIT License


Languages

Language:Dockerfile 52.9%Language:Shell 47.1%