mirror of
https://github.com/YuzuZensai/palworld-server-docker.git
synced 2026-01-06 04:32:43 +00:00
28 lines
1.1 KiB
YAML
28 lines
1.1 KiB
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
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- PORT=8211 # Optional but recommended
|
|
- PLAYERS=16 # Optional but recommended
|
|
- SERVER_PASSWORD="worldofpals" # Optional but recommended
|
|
- MULTITHREADING=true
|
|
- RCON_ENABLED=true
|
|
- RCON_PORT=25575
|
|
- TZ=UTC
|
|
- ADMIN_PASSWORD="adminPasswordHere"
|
|
- COMMUNITY=false # Enable this if you want your server to show up in the community servers tab, USE WITH SERVER_PASSWORD!
|
|
- SERVER_NAME="World of Pals"
|
|
- SERVER_DESCRIPTION=""
|
|
- BACKUP_ENABLED=true
|
|
- BACKUP_CRON_EXPRESSION=0 0 0 * *
|
|
volumes:
|
|
- ./palworld:/palworld/
|