-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yaml
158 lines (151 loc) · 4 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
name: raptorz-cs-server
services:
portainer-ce:
ports:
- 8000:8000
- 9443:9443
container_name: portainer
restart: unless-stopped
security_opt:
- no-new-privileges:true
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./portainer:/data
image: portainer/portainer-ce:latest
tmt2:
container_name: tmt2
restart: unless-stopped
security_opt:
- no-new-privileges:true
environment:
- TMT_SAY_PREFIX=[Raptorz-Lan]
ports:
- 8080:8080
volumes:
- ./tmt2:/app/backend/storage
image: jensforstmann/tmt2:latest
dozzle:
container_name: dozzle
restart: unless-stopped
security_opt:
- no-new-privileges:true
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- 8090:8080
image: amir20/dozzle:latest
cs2-server-1:
image: joedwards32/cs2:latest
container_name: cs-1
environment:
# Server configuration
- SRCDS_TOKEN=changeme
- STEAMAPPVALIDATE=0
- CS2_SERVERNAME=Raptorz-Lan CS2 Server 1
- CS2_CHEATS=0
- CS2_PORT=27015
- CS2_SERVER_HIBERNATE=0
- CS2_RCON_PORT
- CS2_LAN=1
- CS2_RCONPW=changeme
- CS2_PW=changeme
- CS2_MAXPLAYERS=10
# Game modes
- CS2_GAMEALIAS
- CS2_GAMETYPE=0
- CS2_GAMEMODE=1
- CS2_MAPGROUP=mg_active
- CS2_STARTMAP=de_inferno
# TV
- TV_AUTORECORD=0
- TV_ENABLE=0
# Logs
- CS2_LOG=on
- CS2_LOG_MONEY=1
- CS2_LOG_DETAIL=3
- CS2_LOG_ITEMS=1
volumes:
- cs1:/home/steam/cs2-dedicated/
ports:
- "27015:27015/tcp"
- "27015:27015/udp"
stdin_open: true
tty: true
cs2-server-2:
image: joedwards32/cs2:latest
container_name: cs-2
environment:
# Server configuration
- SRCDS_TOKEN=changeme
- STEAMAPPVALIDATE=0
- CS2_SERVERNAME=Raptorz-Lan CS2 Server 2
- CS2_CHEATS=0
- CS2_PORT=27015
- CS2_SERVER_HIBERNATE=0
- CS2_RCON_PORT
- CS2_LAN=1
- CS2_RCONPW=changeme
- CS2_PW=changeme
- CS2_MAXPLAYERS=10
# Game modes
- CS2_GAMEALIAS
- CS2_GAMETYPE=0
- CS2_GAMEMODE=1
- CS2_MAPGROUP=mg_active
- CS2_STARTMAP=de_nuke
# TV
- TV_AUTORECORD=0
- TV_ENABLE=0
# Logs
- CS2_LOG=on
- CS2_LOG_MONEY=1
- CS2_LOG_DETAIL=3
- CS2_LOG_ITEMS=1
volumes:
- cs2:/home/steam/cs2-dedicated/
ports:
- "27025:27015/tcp"
- "27025:27015/udp"
stdin_open: true
tty: true
cs2-server-3:
image: joedwards32/cs2:latest
container_name: cs-3
environment:
# Server configuration
- SRCDS_TOKEN=changeme
- STEAMAPPVALIDATE=0
- CS2_SERVERNAME=Raptorz-Lan CS2 Server 3
- CS2_CHEATS=0
- CS2_PORT=27015
- CS2_SERVER_HIBERNATE=0
- CS2_RCON_PORT
- CS2_LAN=1
- CS2_RCONPW=changeme
- CS2_PW=changeme
- CS2_MAXPLAYERS=10
# Game modes
- CS2_GAMEALIAS
- CS2_GAMETYPE=0
- CS2_GAMEMODE=1
- CS2_MAPGROUP=mg_active
- CS2_STARTMAP=de_vertigo
# TV
- TV_AUTORECORD=0
- TV_ENABLE=0
# Logs
- CS2_LOG=on
- CS2_LOG_MONEY=1
- CS2_LOG_DETAIL=3
- CS2_LOG_ITEMS=1
volumes:
- cs3:/home/steam/cs2-dedicated/
ports:
- "27035:27015/tcp"
- "27035:27015/udp"
stdin_open: true
tty: true
volumes:
cs1:
cs2:
cs3: