-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
44 lines (42 loc) · 1.11 KB
/
compose.yaml
File metadata and controls
44 lines (42 loc) · 1.11 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
36
37
38
39
40
41
42
43
44
name: tcprcon
services:
mh-server:
image: ghcr.io/gameservermanagers/gameserver:mh
container_name: mhserver
ports:
- "7778:7778"
- "7777:7777"
- "7780:7780"
- "15000:15000"
- "27015:27015"
network_mode: host
restart: unless-stopped
healthcheck:
test: ["CMD", "nc", "-z", "localhost", "7778"]
interval: 10s
timeout: 5s
retries: 10
start_period: 30s
volumes:
- linuxgsm-mh:/data
- .serverdata/mh/common.cfg:/data/config-lgsm/mhserver/common.cfg:Z
- .serverdata/mh/Game.ini:/data/serverfiles/Mordhau/Saved/Config/LinuxServer/Game.ini:Z
rust-server:
image: ghcr.io/gameservermanagers/gameserver:rust
container_name: rustserver
restart: unless-stopped
ports:
- "7778:7778"
healthcheck:
test: ["CMD", "nc", "-z", "localhost", "7778"]
interval: 10s
timeout: 5s
retries: 10
start_period: 30s
volumes:
- linuxgsm-rust:/data
- .serverdata/rust/common.cfg:/data/config-lgsm/rustserver/common.cfg:Z
network_mode: host
volumes:
linuxgsm-mh:
linuxgsm-rust: