2024-01-19 14:58:51 +01:00
|
|
|
services:
|
|
|
|
|
palworld:
|
2024-01-22 21:57:01 +01:00
|
|
|
image: thijsvanloef/palworld-server-docker:latest
|
2024-01-19 14:58:51 +01:00
|
|
|
restart: unless-stopped
|
|
|
|
|
container_name: palworld-server
|
|
|
|
|
ports:
|
2024-01-19 15:07:14 +01:00
|
|
|
- 8211:8211/udp
|
|
|
|
|
- 27015:27015/udp
|
2024-01-19 14:58:51 +01:00
|
|
|
environment:
|
2024-01-20 22:22:30 -08:00
|
|
|
- PUID=1000
|
|
|
|
|
- PGID=1000
|
2024-01-21 20:04:45 +01:00
|
|
|
- PORT=8211 # Optional but recommended
|
|
|
|
|
- PLAYERS=16 # Optional but recommended
|
2024-01-22 19:12:41 +01:00
|
|
|
- MULTITHREADING=true
|
|
|
|
|
- ENABLE_RCON=true
|
|
|
|
|
- RCON_PORT=25575
|
|
|
|
|
- ADMIN_PASSWORD="adminPasswordHere"
|
2024-01-19 18:22:08 +01:00
|
|
|
- COMMUNITY=false # Enable this if you want your server to show up in the community servers tab, USE WITH SERVER_PASSWORD!
|
2024-01-19 19:06:05 +01:00
|
|
|
# Enable the environment variables below if you have COMMUNITY=true
|
|
|
|
|
# - SERVER_PASSWORD="worldofpals"
|
|
|
|
|
# - SERVER_NAME="World of Pals"
|
2024-01-19 14:58:51 +01:00
|
|
|
volumes:
|
2024-01-20 22:22:30 -08:00
|
|
|
- ./palworld:/palworld/
|
2024-01-22 19:12:41 +01:00
|
|
|
rcon:
|
|
|
|
|
image: outdead/rcon:latest
|
|
|
|
|
entrypoint: ['/rcon', '-a', 'palworld:25575', '-p', 'adminPasswordHere']
|
2024-01-22 21:57:01 +01:00
|
|
|
profiles: ['rcon']
|