-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
233 lines (233 loc) · 5.78 KB
/
docker-compose.yml
File metadata and controls
233 lines (233 loc) · 5.78 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
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
#additionalservice:
# extends:
# file:ymlFileOfService
# service:servicesForStarting
mysqldata:
container_name: mysql-data
image: gordinlearninglayers/mysql-data
env_file:
- common.env
- mysql/mysql.env
volumes:
- ./mysql-data/backup/:/backup
mysql:
container_name: mysql
image: learninglayers/mysql
env_file:
- common.env
- mysql/mysql.env
volumes_from:
- mysqldata
# volumes:
# - ./mysql/:/var/lib/mysql/
ports:
- "127.0.0.1:3307:3306"
mysqlcreate:
image: gordinlearninglayers/mysql-create
links:
- mysql
env_file:
- common.env
- mysql/mysql.env
- secret.env
volumes:
- ./mysql-create/sqlfile/:/sqlfile/
adapterdata:
container_name: adapter-data
image: gordinlearninglayers/adapter-data
env_file:
- common.env
adapterservices:
# container_name: adapter-services
image: gordinlearninglayers/adapter-externals
volumes_from:
- surveysnginx
- qvsnginx
- oidcnginx
- tethysuserstoragenginx
- openldapaccountnginx
# - swiftnginx
adapter:
container_name: adapter
image: learninglayers/adapter
volumes_from:
- adapterdata
- qvsfrontend
- surveysfrontend
- adapterservices
volumes:
- ./ssl/:/usr/local/openresty/conf/ssl/
env_file:
- common.env
ports:
- "80:80"
- "443:443"
links:
- qvs
- surveys
- oidc
- openldapaccount
# - tethysuserstorage
# - swift
qvsdata:
container_name: mobsos-qvs-data
image: gordinlearninglayers/mobsos-qvs-data
env_file:
- common.env
- mobsos-query-visualization/QVS.env
qvsfrontend:
container_name: mobsos-qvs-frontend
image: gordinlearninglayers/mobsos-qvs-frontend
# build: mobsos-query-visualization-frontend
env_file:
- common.env
- mobsos-query-visualization/QVS.env
qvs:
container_name: mobsos-qvs
image: gordinlearninglayers/mobsos-qvs
env_file:
- common.env
- mobsos-query-visualization/QVS.env
volumes_from:
- qvsdata
volumes:
- /dev/urandom:/dev/random
links:
- mysql
qvsnginx:
image: gordinlearninglayers/mobsos-qvs-nginx
openldapdata:
container_name: openldap-data
image: gordinlearninglayers/openldap-data
env_file:
- openldap/LDAP.env
volumes:
- ./openldap-data/backup/:/backup
openldap:
container_name: openldap
image: gordinlearninglayers/openldap
env_file:
- openldap/LDAP.env
ports:
- "127.0.0.1:389:389"
volumes_from:
- openldapdata
volumes:
- /dev/urandom:/dev/random
openldapaccountdata:
container_name: openldapaccount
image: gordinlearninglayers/openldapaccount-data
openldapaccount:
container_name: openldapaccount
image: gordinlearninglayers/openldapaccount
volumes_from:
- openldapaccountdata
ports:
- "127.0.0.1:8083:8080"
links:
- openldap
- tethysuserstorage
environment:
- TETHYS_IP=tethysuserstorage
- PWM_LDAP_ADMINS=<value>koren</value><value>nicolaescu</value>
env_file:
- common.env
- openldap/LDAP.env
links:
- openldap
volumes:
- /dev/urandom:/dev/random
openldapaccountnginx:
image: gordinlearninglayers/openldapaccount-nginx
oidcdata:
container_name: oidc-data
image: gordinlearninglayers/openidconnect-data
env_file:
- common.env
- openidconnect/OIDC.env
- openldap/LDAP.env
oidc:
container_name: adapter image: learninglayers/openidconnect
env_file:
- common.env
- openidconnect/OIDC.env
- openldap/LDAP.env
volumes_from:
- oidcdata
links:
- mysql
- openldap
ports:
- "127.0.0.1:8080:8080"
volumes:
- /dev/urandom:/dev/random
oidcnginx:
image: gordinlearninglayers/openidconnect-nginx
surveysdata:
container_name: mobsos-surveys-data
image: gordinlearninglayers/mobsos-surveys-data
env_file:
- common.env
- mobsos-surveys/SURVEYS.env
surveys:
container_name: mobsos-surveys
image: gordinlearninglayers/mobsos-surveys
env_file:
- common.env
- mobsos-surveys/SURVEYS.env
links:
- mysql
volumes_from:
- surveysdata
volumes:
- /dev/urandom:/dev/random
surveysfrontend:
container_name: mobsos-surveys-frontend
image: gordinlearninglayers/mobsos-surveys-frontend
env_file:
- common.env
- mobsos-surveys/SURVEYS.env
surveysnginx:
image: gordinlearninglayers/mobsos-surveys-nginx
swift:
container_name: swift
image: learninglayers/swift
ports:
- "127.0.0.1:8082:8080"
env_file:
- common.env
- swift/SWIFT.env
swiftnginx:
image: gordinlearninglayers/swift-nginx
tethysuserstorage:
container_name: tethys-user-storage
image: gordinlearninglayers/tethys-userstorage
ports:
- "127.0.0.1:8081:8080"
env_file:
- common.env
- swift/SWIFT.env
- tethys-userstorage/TETHYS.env
volumes:
- /dev/urandom:/dev/random
tethysuserstoragenginx:
image: gordinlearninglayers/tethys-userstorage-nginx
mobsosmonitordata:
container_name: mobsos-monitor
image: gordinlearninglayers/mobsos-monitor-data
env_file:
- common.env
- mobsos-monitor/MM.env
- openidconnect/OIDC.env
mobsosmonitor:
container_name: mobsos-monitor
image: gordinlearninglayers/mobsos-monitor
env_file:
- common.env
- mobsos-monitor/MM.env
- mysql/mysql.env
links:
- mysql
volumes_from:
- mobsosmonitordata
- adapterdata