-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
123 lines (113 loc) · 3.12 KB
/
docker-compose.yml
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
version: "3.9" # optional since v1.27.0
services:
mysql:
image: "mysql:5.7"
restart: always
volumes:
- mysqlvolume:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=${MYSQL_PASSWORD}
networks:
- backend
data-processing:
image: registry.tech4comp.dbis.rwth-aachen.de/rwthacis/mobsos-data-processing:master
depends_on :
- mysql
ports:
- "8080:8080"
- "9011:9011"
environment:
- LAS2PEER_PORT=9011
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
- MYSQL_DATABASE=${MOBSOS_DATABASE}
- MYSQL_USER=${MYSQL_USER}
hostname: data-processing
networks:
- backend
success-modeling:
image: "registry.tech4comp.dbis.rwth-aachen.de/rwthacis/mobsos-success-modeling:master"
depends_on :
- mysql
- data-processing
environment:
- LAS2PEER_PORT=9012
- BOOTSTRAP=data-processing:9011
- USE_FILE_SERVICE=FALSE
- MYSQL_USER=${MYSQL_USER}
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
- MYSQL_DATABASE=${MOBSOS_DATABASE}
networks:
- backend
query-visualization:
image: "registry.tech4comp.dbis.rwth-aachen.de/rwthacis/mobsos-query-visualization:master"
depends_on :
- mysql
- data-processing
environment:
- LAS2PEER_PORT=9013
- BOOTSTRAP=data-processing:9011
- MYSQL_USER=${MYSQL_USER}
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
- MYSQL_DATABASE=${QVS_DATABASE}
networks:
- backend
contact-service:
image: "registry.tech4comp.dbis.rwth-aachen.de/rwthacis/las2peer-contact-service:develop"
depends_on :
- data-processing
environment:
- LAS2PEER_PORT=9014
- BOOTSTRAP=data-processing:9011
- CONTACT_STORER_NAME=contact-storer
- CONTACT_STORER_PW=contact-storer
networks:
- backend
surveys:
image: "registry.tech4comp.dbis.rwth-aachen.de/rwthacis/mobsos-surveys:master"
depends_on :
- mysql
- data-processing
environment:
- LAS2PEER_PORT=9015
- BOOTSTRAP=data-processing:9011
- MYSQL_USER=${MYSQL_USER}
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
- MYSQL_DATABASE=${SURVEYS_DATABASE}
networks:
- backend
# yjs: #commented out because for some reason not reachable via localhost
# image: rwthacis/y-websockets-server
# ports:
# - "1234:1234"
# expose:
# - 1234
# environment:
# - DEBUG=y*,-y:connector-message y-websockets-server --port 1234
# networks:
# - frontend
evaluation-center:
image: "registry.tech4comp.dbis.rwth-aachen.de/rwthacis/mobsos-evaluation-center:master"
depends_on :
- data-processing
- surveys
- query-visualization
- success-modeling
- contact-service
# - yjs
ports:
- "4200:80"
environment:
- BOOTSTRAP=$LAS2PEER_WEBCONNECTOR_URL
- Y_WEBSOCKET=$Y_WEBSOCKET_URL
- PRODUCTION=FALSE
- SURVEYS_URL=http://localhost:8080/mobsos-surveys
- OIDC_CLIENT_ID=$OIDC_CLIENT_ID
networks:
- frontend
volumes:
mysqlvolume: {}
networks:
backend:
driver: bridge
frontend:
driver: bridge