-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yaml
45 lines (45 loc) · 1.08 KB
/
compose.yaml
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
36
37
38
39
40
41
42
43
44
45
version: "3"
services:
master-shard:
image: yadst-runtime
build: .
working_dir: /opt/dst/game/bin64
entrypoint: ./dontstarve_dedicated_server_nullrenderer_x64
command:
- -ugc_directory
- /opt/dst/game/ugc_mods
- -persistent_storage_root
- /opt/dst/data
- -conf_dir
- DoNotStarveTogether
- -cluster
- MyDediServer
- -shard
- Master
- -skip_update_server_mods
volumes:
- ./server/game:/opt/dst/game
- ./server/data:/opt/dst/data
ports:
- 11000-11001/udp
caves-shard:
image: yadst-runtime
build: .
working_dir: /opt/dst/game/bin64
entrypoint: ./dontstarve_dedicated_server_nullrenderer_x64
command:
- -ugc_directory
- /opt/dst/game/ugc_mods
- -persistent_storage_root
- /opt/dst/data
- -conf_dir
- DoNotStarveTogether
- -cluster
- MyDediServer
- -shard
- Caves
- -skip_update_server_mods
volumes:
- ./server/game:/opt/dst/game
- ./server/data:/opt/dst/data
network_mode: service:master-shard