forked from jammsen/docker-palworld-dedicated-server
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (34 loc) · 1 KB
/
docker-compose.yml
File metadata and controls
35 lines (34 loc) · 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
33
34
35
networks:
palworld:
services:
palworld-dedicated-server:
container_name: palworld-wine-server
image: ghcr.io/ripps818/docker-palworld-dedicated-server-wine: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
- target: 27015 # Query port inside of the container
published: 27015 # Query port on your host
protocol: tcp
env_file:
- ./default.env
volumes:
- ./game:/palworld
networks:
- palworld