-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
150 lines (150 loc) · 3.29 KB
/
docker-compose.yaml
File metadata and controls
150 lines (150 loc) · 3.29 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
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
services:
tf2-quickserver:
build:
dockerfile: Dockerfile
context: .
container_name: tf2-quickserver
env_file:
- .env
volumes:
- ./db:/app/db
- ./config:/app/config:ro
- ./keys:/app/keys:ro
profiles:
- bot
tf2-pickup-server:
build:
context: ./
dockerfile: ./variants/fat-tf2pickup/Dockerfile
container_name: tf2-pickup-server
env_file:
- .env
command:
- "-enablefakeip"
- "+sv_pure"
- "2"
- "+maxplayers"
- "24"
- "+map"
- "cp_badlands"
# NET_ADMIN capability required to set MTU inside the container for UDP fragmentation control
cap_add:
- NET_ADMIN
profiles:
- server
fat-server-amd64:
build:
context: ./
dockerfile: ./variants/fat-standard-competitive-amd64/Dockerfile
container_name: tf2-fat-server-amd64
ports:
- 27015:27015
- 27015:27015/udp
- 27020:27020
- 27020:27020/udp
env_file:
- .env
command:
- "-enablefakeip"
- "+sv_pure"
- "2"
- "+maxplayers"
- "24"
- "+map"
- "cp_badlands"
- +log
- on
- +logaddress_add
- "host.docker.internal:27101"
# NET_ADMIN capability required to set MTU inside the container for UDP fragmentation control
cap_add:
- NET_ADMIN
profiles:
- server
fat-server-i386:
build:
context: ./
dockerfile: ./variants/fat-standard-competitive-i386/Dockerfile
container_name: tf2-fat-server-i386
ports:
- 27015:27015
- 27015:27015/udp
- 27020:27020
- 27020:27020/udp
env_file:
- .env
command:
- "-enablefakeip"
- "+sv_pure"
- "2"
- "+maxplayers"
- "24"
- "+map"
- "cp_badlands"
- +log
- on
- +logaddress_add
- "host.docker.internal:27101"
# NET_ADMIN capability required to set MTU inside the container for UDP fragmentation control
cap_add:
- NET_ADMIN
profiles:
- server
fat-tf2center:
build:
context: ./
dockerfile: ./variants/fat-tf2center/Dockerfile
container_name: tf2-fat-tf2center
ports:
- 27015:27015
- 27015:27015/udp
- 27020:27020
- 27020:27020/udp
env_file:
- .env
command:
- "-enablefakeip"
- "+sv_pure"
- "2"
- "+maxplayers"
- "24"
- "+map"
- "cp_badlands"
- +log
- on
- +logaddress_add
- "host.docker.internal:27101"
# NET_ADMIN capability required to set MTU inside the container for UDP fragmentation control
cap_add:
- NET_ADMIN
profiles:
- server
fat-mge-tf:
build:
context: ./
dockerfile: ./variants/fat-mge-tf/Dockerfile
container_name: tf2-fat-mge-tf
ports:
- 27015:27015
- 27015:27015/udp
- 27020:27020
- 27020:27020/udp
env_file:
- .env
command:
- "-enablefakeip"
- "+sv_pure"
- "2"
- "+maxplayers"
- "24"
- "+map"
- "mge_training_v8_beta4b"
- +log
- on
- +logaddress_add
- "host.docker.internal:27101"
# NET_ADMIN capability required to set MTU inside the container for UDP fragmentation control
cap_add:
- NET_ADMIN
profiles:
- server