https://github.com/itay-grudev/palworld
Palworld Server Docker Image
https://github.com/itay-grudev/palworld
docker palworld
Last synced: 3 months ago
JSON representation
Palworld Server Docker Image
- Host: GitHub
- URL: https://github.com/itay-grudev/palworld
- Owner: itay-grudev
- License: gpl-3.0
- Created: 2024-02-08T19:14:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-14T13:25:02.000Z (over 1 year ago)
- Last Synced: 2025-01-17T11:12:30.124Z (4 months ago)
- Topics: docker, palworld
- Language: Dockerfile
- Homepage:
- Size: 22.5 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Palworld Server
===============PalServer docker container based on a non-root `steamcmd` installation on Ubuntu 22.04.
The Docker container includes the PalServer pre-installed, but updates it whenever it's started. It's highly recommended to mount the whole `steamapps/common` directory in a named volume, to avoid downloading updates every single time (as that may take a while depending on your connection) and to ensure the persistence of your world.
The game requires that you expose UDP port `8211`. Make sure to allow it through your firewall and/or NAT.
```console
docker run -d \
-p 8211:8211/udp \
--restart unless-stopped \
-v palworld-data:/home/palworld/Steam/steamapps/common \
--name palworld \
ghcr.io/itay-grudev/palworld:latest
```License
-------The Dockerfile, related scripts and documentation are released under the terms of GPLv3. Refer to the `LICENSE` file for more information.