-
Notifications
You must be signed in to change notification settings - Fork 20
/
docker-compose.yml
33 lines (32 loc) · 923 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
version: "3.9"
services:
dedicated-server:
image: kagurazakanyaa/palworld:latest
# build: # only use in test
# context: .
restart: unless-stopped
network_mode: bridge
ports:
- 8211:8211/udp
# - 8212:8212/tcp # only use in RESTAPI_ENABLED=true
# - 25575:25575/tcp # only use in RCON_ENABLED=true
environment:
- GAME_PORT=8211
- MAX_PLAYERS=32
- ENABLE_MULTITHREAD=true
- IS_PUBLIC=false
- PUBLIC_IP=
- PUBLIC_PORT=
- FORCE_UPDATE=false
- SERVER_NAME=Default Palworld Server
- SERVER_DESC=Default Palworld Server
- ADMIN_PASSWORD=changeme
- SERVER_PASSWORD=
- RCON_ENABLED=false
- RCON_PORT=25575
- RESTAPI_ENABLED=false
- RESTAPI_PORT=8212
volumes:
- /etc/localtime:/etc/localtime:ro
- ./data:/opt/palworld/Pal/Saved
- ./mods:/opt/palworld/Pal/Content/Paks/MOD