mirror of
https://github.com/YuzuZensai/palworld-server-docker.git
synced 2026-01-06 04:32:43 +00:00
# Motivations Being able to configure the admin password would be quite helpful # Modifications - Add `ADMIN_PASSWORD` to the list of environment variables, which adds `--adminpassword` to the server arguments
20 lines
724 B
YAML
20 lines
724 B
YAML
services:
|
|
palworld:
|
|
image: thijsvanloef/palworld-server-docker:latest
|
|
restart: unless-stopped
|
|
container_name: palworld-server
|
|
ports:
|
|
- 8211:8211/udp
|
|
- 27015:27015/udp
|
|
environment:
|
|
- PORT=8211
|
|
- PLAYERS=16
|
|
- MULTITHREADING=false
|
|
- UPDATE_ON_BOOT=true
|
|
- COMMUNITY=false # Enable this if you want your server to show up in the community servers tab, USE WITH SERVER_PASSWORD!
|
|
# Enable the environment variables below if you have COMMUNITY=true
|
|
# - SERVER_PASSWORD="worldofpals"
|
|
# - SERVER_NAME="World of Pals"
|
|
# - ADMIN_PASSWORD="someAdminPassword"
|
|
volumes:
|
|
- ./palworld:/palworld/ |