forked from ssl-core/ssl-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.dev.yaml
249 lines (228 loc) · 5.44 KB
/
docker-compose.dev.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
services:
simulator:
container_name: simulator
image: roboticserlangen/simulatorcli:commit-6a4e1c06533b
restart: unless-stopped
environment:
GEOMETRY: "2020"
REALISM: "RC2021"
logging:
driver: none
autoref-tigers:
container_name: autoref-tigers
image: tigersmannheim/auto-referee:1.2.0
restart: unless-stopped
command:
- "-a"
- "-visionAddress"
- "224.5.23.2:10020"
- "-refereeAddress"
- "224.5.23.1:11003"
logging:
driver: none
depends_on:
- simulator
game-controller:
container_name: game-controller
image: robocupssl/ssl-game-controller:3.9.0
command:
- "-visionAddress"
- "224.5.23.2:10020"
- "-trackerAddress"
- "224.5.23.2:11010"
- "-publishAddress"
- "224.5.23.1:11003"
- "-address"
- ":8081"
restart: unless-stopped
ports:
- 8081/tcp
- 8081:8081
logging:
driver: none
depends_on:
- autoref-tigers
ssl-vision-client:
container_name: ssl-vision-client
image: robocupssl/ssl-vision-client:1.7.3
command:
- "-visionAddress"
- "224.5.23.2:10020"
restart: unless-stopped
ports:
- 8082/tcp
- 8082:8082
logging:
driver: none
depends_on:
- game-controller
network_mode: host
gateway:
container_name: gateway
build:
context: .
dockerfile: gateway/gateway-augusto/gateway-augusto.Dockerfile
environment:
- VISION_PORT=10020
- GC_PORT=11003
volumes:
- .ssl-core:/tmp/.ssl-core
ports:
- 50051:50051
depends_on:
- simulator
perception-ms:
container_name: perception-ms
build:
context: .
dockerfile: perception-ms/perception-brutus/perception-brutus.Dockerfile
volumes:
- .ssl-core:/tmp/.ssl-core
depends_on:
- gateway
referee-ms:
container_name: referee-ms
build:
context: .
dockerfile: referee-ms/referee-daronco/referee-daronco.Dockerfile
volumes:
- .ssl-core:/tmp/.ssl-core
depends_on:
- perception-ms
playback-ms:
container_name: playback-ms
build:
context: .
dockerfile: playback-ms/playback-caze/playback-caze.Dockerfile
volumes:
- .ssl-core:/tmp/.ssl-core
depends_on:
- referee-ms
- playback-db
attach: false
playback-db:
container_name: playback-db
image: redis:7.2.5
attach: false
player-bff:
container_name: player-bff
build:
context: .
dockerfile: player-bff/player-sonson/player-sonson.Dockerfile
ports:
- 4040:4040
depends_on:
- gateway
- playback-ms
player-mfe:
build:
context: .
dockerfile: player-mfe/Dockerfile
args:
- SOURCE_DIRECTORY=player-mfe
command: [ "-g", "daemon off;" ]
ports:
- 3031:3031
depends_on:
- player-bff
viewer-mfe:
build:
context: .
dockerfile: viewer-mfe/Dockerfile
args:
- SOURCE_DIRECTORY=viewer-mfe
command: [ "-g", "daemon off;" ]
ports:
- 3032:3032
app-shell:
build:
context: .
dockerfile: app-shell/Dockerfile
args:
- SOURCE_DIRECTORY=app-shell
command: [ "-g", "daemon off;" ]
ports:
- 3030:3030
metrics-ms:
container_name: metrics-ms
build:
context: .
dockerfile: metrics-ms/metrics-sherlock/metrics-sherlock.Dockerfile
volumes:
- .ssl-core:/tmp/.ssl-core
depends_on:
- playback-ms
- metrics-db
attach: false
metrics-db:
container_name: metrics-db
image: influxdb:2
environment:
DOCKER_INFLUXDB_INIT_MODE: setup
DOCKER_INFLUXDB_INIT_USERNAME: ssl-core
DOCKER_INFLUXDB_INIT_PASSWORD: ssl-core
DOCKER_INFLUXDB_INIT_ORG: ssl-core
DOCKER_INFLUXDB_INIT_BUCKET: metrics
DOCKER_INFLUXDB_INIT_RETENTION: 3h
DOCKER_INFLUXDB_INIT_ADMIN_TOKEN: metrics
ports:
- 8086:8086
attach: false
grafana:
container_name: grafana
image: grafana/grafana
environment:
- GF_AUTH_DISABLE_LOGIN_FORM=true
- GF_AUTH_ANONYMOUS_ENABLED=true
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
volumes:
- .grafana/config.ini:/etc/grafana/config.ini
- .grafana/dashboards:/var/lib/grafana/dashboards
- .grafana/provisioning:/etc/grafana/provisioning
logging:
driver: none
ports:
- 3000:3000
depends_on:
- metrics-db
attach: false
navigation-ms:
container_name: navigation-ms
build:
context: .
dockerfile: navigation-ms/navigation-luffy/navigation-luffy.Dockerfile
volumes:
- .ssl-core:/tmp/.ssl-core
attach: false
decision-ms:
container_name: decision-ms
build:
context: .
dockerfile: decision-ms/decision-guardiola/decision-guardiola.Dockerfile
volumes:
- .ssl-core:/tmp/.ssl-core
depends_on:
- perception-ms
- referee-ms
attach: true
behavior-ms:
container_name: behavior-ms
build:
context: .
dockerfile: behavior-ms/behavior-bruxo/behavior-bruxo.Dockerfile
volumes:
- .ssl-core:/tmp/.ssl-core
attach: false
communication-ms:
container_name: communication-ms
build:
context: .
dockerfile: communication-ms/communication-jaiminho/communication-jaiminho.Dockerfile
volumes:
- .ssl-core:/tmp/.ssl-core
depends_on:
- gateway
network_mode: "host"
attach: false
volumes:
.ssl-core: