-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathcompose.yml
More file actions
32 lines (32 loc) · 1.1 KB
/
Copy pathcompose.yml
File metadata and controls
32 lines (32 loc) · 1.1 KB
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
services:
palworld-dedicated-server:
container_name: palworld-dedicated-server
image: jammsen/palworld-dedicated-server:latest
restart: unless-stopped
logging:
driver: "local"
options:
max-size: "10m"
max-file: "3"
ports:
- target: 8211 # Gamerserver port inside of the container
published: 8211 # Gamerserver port on your host
protocol: udp
mode: host
- target: 8212 # Gameserver API port inside of the container
published: 8212 # Gameserver API port on your host
protocol: tcp
mode: host
- target: 25575 # RCON port inside of the container
published: 25575 # RCON port on your host
protocol: tcp
mode: host
# Uncomment to reach the web panel (PANEL_ENABLED=true) - do NOT expose this port to the internet, use a reverse proxy or VPN/LAN only
#- target: 8213 # Web panel port inside of the container
# published: 8213 # Web panel port on your host
# protocol: tcp
# mode: host
env_file:
- ./default.env
volumes:
- ./game:/palworld