-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.docker-compose.yaml
executable file
·392 lines (374 loc) · 10.7 KB
/
services.docker-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
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
version: "3"
services:
create_topics_job:
image: acss/core_service
container_name: create_topics_job
hostname: create_topics_job
depends_on:
- kafka_1
- kafka_2
# - logstash
environment:
PYTHONPATH: /pipe
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
volumes:
- "/tmp/:/tmp/"
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
entrypoint:
- /pipe/.venv/bin/python
- create_topics.py
profiles:
- core
networks:
- pipenetwork
old_agent:
image: acss/service
container_name: old_agent
hostname: old_agent
depends_on:
- create_topics_job
- register
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- agents/orbit_old/orbit_agent.py
profiles:
- testing
networks:
- pipenetwork
silly_agent_callback:
image: acss/service
container_name: silly_agent_callback
hostname: silly_agent_callback
depends_on:
- create_topics_job
- register
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- agents/testing/silly_agent_callback.py
profiles:
- silly
networks:
- pipenetwork
silly_agent:
image: acss/service
container_name: silly_agent
hostname: silly_agent
depends_on:
- create_topics_job
- register
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- agents/testing/silly_agent.py
profiles:
- testing
networks:
- pipenetwork
silly_measure_agent:
image: acss/service
container_name: silly_measure_agent
hostname: silly_measure_agent
depends_on:
- create_topics_job
- register
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- agents/testing/silly_measure_agent.py
profiles:
- testing
networks:
- pipenetwork
set_table_service:
image: acss/service
container_name: set_table_service
hostname: set_table_service
depends_on:
- create_topics_job
- register
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
SERVICE_NAME: "set_table_service" # default name for testing
SERVICE_MODE: "sim" # default mode for testing
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- agents/testing/set_table_service.py
profiles:
- testing
- silly
networks:
- pipenetwork
machine:
build:
context: ${PATH_TO_ACSS_SERVICES_ROOT}/machine
dockerfile: ${PATH_TO_ACSS_SERVICES_ROOT}/acss_service.Dockerfile
image: acss/machine-service
container_name: machine
hostname: machine
depends_on:
- create_topics_job
- register
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- machine/PetraSimMachine.py
profiles:
- at
- simulation
networks:
- pipenetwork
simulation:
image: acss/service
container_name: simulation
hostname: simulation
depends_on:
- create_topics_job
- register
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- simulations/orbit/PetraOrbitSimulation.py
profiles:
- at
- simulation
networks:
- pipenetwork
timed_silly_simulation:
image: acss/service
container_name: timed_silly_simulation
hostname: timed_silly_simulation
depends_on:
- create_topics_job
- register
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- simulations/testing/TimedSillySimulation.py
profiles:
- silly
networks:
- pipenetwork
silly_simulation:
image: acss/service
container_name: silly_simulation
hostname: silly_simulation
depends_on:
- create_topics_job
- register
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- simulations/testing/SillySimulation.py
profiles:
- silly
networks:
- pipenetwork
simulation_database:
image: mariadb
container_name: simulation_database
hostname: simulation_database
restart: always
ports:
- 3306:3306
profiles:
- simulation
environment:
MYSQL_ROOT_PASSWORD: ${ACSS_DB_PW}
MYSQL_DATABASE: sim_db
networks:
- pipenetwork
fill_sim_db_job:
image: acss/core_service
container_name: fill_sim_db_job
hostname: fill_sim_db_job
depends_on:
- simulation_database
profiles:
- simulation
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: /pipe/acss_service/
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- fill_sql_sim_db.py
networks:
- pipenetwork
phpmyadmin:
image: phpmyadmin/phpmyadmin
container_name: phpmyadmin
hostname: phpmyadmin
depends_on:
- simulation_database
restart: always
ports:
- 8088:80
environment:
PMA_HOST: simulation_database
MYSQL_ROOT_PASSWORD: ${ACSS_DB_PW}
profiles:
- testing
- simulation
networks:
- pipenetwork
orb_cor_agent:
image: acss/service
container_name: orb_cor_agent
hostname: orb_cor_agent
depends_on:
- create_topics_job
- register
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
SERVICE_NAME: "orbit_corr_agent" # default name for testing
SERVICE_MODE: "sim" # default mode for testing
volumes:
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- agents/orbit/orbit_corr_agent.py
profiles:
- testing
- prod
networks:
- pipenetwork
config_to_file_1:
image: acss/service
container_name: config_to_file_1
hostname: config_to_file_1
depends_on:
- create_topics_job
- register
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
SERVICE_NAME: "config_to_file_1" # default name for testing
SERVICE_MODE: "sim" # default mode for testing
volumes:
- /tmp/:/tmp/
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
entrypoint:
- /pipe/.venv/bin/python
- agents/testing/config_to_file_service.py
profiles:
- testing
networks:
- pipenetwork
config_to_file_2:
image: acss/service
container_name: config_to_file_2
hostname: config_to_file_2
depends_on:
- create_topics_job
- register
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
PATH_TO_ACSS_SERVICES_ROOT: "/pipe/acss_service/"
SERVICE_NAME: "config_to_file_2" # default name for testing
SERVICE_MODE: "sim" # default mode for testing
volumes:
- /tmp/:/tmp/
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
entrypoint:
- /pipe/.venv/bin/python
- agents/testing/config_to_file_service.py
profiles:
- testing
networks:
- pipenetwork
http_proxy:
image: acss/http_iface
container_name: http_proxy
hostname: http_proxy
depends_on:
- create_topics_job
- register
- kafka_1
- kafka_2
ports:
- 5002:5002
environment:
PYTHONPATH: /pipe:/pipe/acss_service/
ACSS_CONFIG_FILEPATH: /pipe/acss-config.yaml
ACSS_CONFIG_FILEPATH_HOST: ${ACSS_CONFIG_FILEPATH}
PATH_TO_ACSS_SERVICES_ROOT: ${PATH_TO_ACSS_SERVICES_ROOT} #needed because http_proxy can start services
profiles:
- core
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- "${ACSS_CONFIG_FILEPATH}:/pipe/acss-config.yaml"
- "${PATH_TO_ACSS_SERVICES_ROOT}/:/pipe/acss_service/"
networks:
- pipenetwork
working_dir: /pipe/acss_service/
entrypoint:
- /pipe/.venv/bin/python
- /pipe/src/console/http_server.py
networks:
pipenetwork:
driver: bridge