mirror of
https://github.com/YuzuZensai/palworld-server-docker.git
synced 2026-01-06 04:32:43 +00:00
- Now a env-file is present to make setup more clean to execute; - Added the grace period to the docker run command; - Updated the docs to reflect this new suggestions;
14 lines
487 B
YAML
14 lines
487 B
YAML
services:
|
|
palworld:
|
|
image: thijsvanloef/palworld-server-docker:latest
|
|
restart: unless-stopped
|
|
container_name: palworld-server
|
|
stop_grace_period: 30s # Set to however long you are willing to wait for the container to gracefully stop
|
|
ports:
|
|
- 8211:8211/udp
|
|
- 27015:27015/udp # Required if you want your server to show up in the community servers tab
|
|
env_file:
|
|
- .env.example
|
|
volumes:
|
|
- ./palworld:/palworld/
|