-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
197 lines (178 loc) · 4.66 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
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
version: "3.5"
services:
########################### Infrastructure ######################################
fuseki:
image: saiye/fuseki:4.7.0
hostname: fuseki
restart: unless-stopped
ports:
- "3030:3030"
environment:
- FUSEKI_DATASET_1=sm
- FUSEKI_DATASET_2=ontologies
- ADMIN_PASSWORD=plasma
volumes:
- fuseki_data:/fuseki
mariadb-sas:
image: mariadb:latest
hostname: mariadb-sas
restart: unless-stopped
command: mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
environment:
- MYSQL_DATABASE=plasma-sas
- MYSQL_ROOT_PASSWORD=plasma
volumes:
- mariadb_sas:/var/lib/mysql
healthcheck:
test: bash -c "mariadb -h 127.0.0.1 -p$$MYSQL_ROOT_PASSWORD -e \"show databases;\""
interval: 10s
timeout: 10s
retries: 3
start_period: 5s
ports:
- "3307:3306"
mariadb-dms:
image: mariadb:latest
hostname: mariadb-dms
restart: unless-stopped
command: mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
environment:
- MYSQL_DATABASE=plasma-dms
- MYSQL_ROOT_PASSWORD=plasma
volumes:
- mariadb_dms:/var/lib/mysql
healthcheck:
test: bash -c "mariadb -h 127.0.0.1 -p$$MYSQL_ROOT_PASSWORD -e \"show databases;\""
interval: 10s
timeout: 10s
retries: 3
start_period: 5s
ports:
- "3308:3306"
########################### Service Infrastructure ######################################
discovery:
image: "plasma/discovery:${PLASMA_VERSION}"
hostname: plasma-discovery-service
restart: unless-stopped
ports:
- "8761:8761"
admin:
image: "plasma/admin:${PLASMA_VERSION}"
hostname: plasma-admin-service
restart: unless-stopped
depends_on:
- discovery
ports:
- "8080:8080"
gateway:
image: "plasma/gateway:${PLASMA_VERSION}"
hostname: plasma-gateway-service
restart: unless-stopped
depends_on:
- discovery
ports:
- "8888:8888"
########################### Services ######################################
kgs:
image: "plasma/kgs:${PLASMA_VERSION}"
hostname: plasma-kgs
user: root
restart: unless-stopped
depends_on:
- discovery
- fuseki
ports:
- "8181:8181"
environment:
- plasma.kgs.ontologies.folder=/var/ontologies
volumes:
- kgs_ontologies:/var/ontologies
sas:
image: "plasma/sas:${PLASMA_VERSION}"
hostname: plasma-sas
restart: unless-stopped
depends_on:
- discovery
- mariadb-sas
ports:
- "8189:8189"
dms:
image: "plasma/dms:${PLASMA_VERSION}"
hostname: plasma-dms
restart: unless-stopped
volumes:
- configs:/var/plasma/configs
depends_on:
- discovery
- mariadb-dms
ports:
- "8186:8186"
environment:
- plasma.dms.feature.recommendations.enabled=true
- plasma.dms.feature.finalizemodels.enabled=true
dps:
image: "plasma/dps:${PLASMA_VERSION}"
hostname: plasma-dps
user: root
restart: unless-stopped
depends_on:
- discovery
ports:
- "8193:8193"
environment:
- plasma.localstorage.directory=/var/plasma/localstorage
volumes:
- dps_storage:/var/plasma/localstorage
srs:
image: "plasma/srs:${PLASMA_VERSION}"
hostname: plasma-srs
restart: unless-stopped
depends_on:
- discovery
ports:
- "8190:8190"
environment:
- plasma.ars.labeling.urls=http://plasma-ars-l-lm:8201/api/plasma-ars-l-lm
- plasma.ars.modeling.url=
- plasma.ars.refinement.urls=http://plasma-ars-r-sr:8221/recommendation
frontend:
build: ./frontend
image: "plasma/ui:${PLASMA_VERSION}"
hostname: plasma-ui
restart: unless-stopped
ports:
- "80:80"
########################### Auxiliary Services ######################################
ars-l-lm:
image: "plasma/ars-l-lm:${PLASMA_VERSION}"
hostname: plasma-ars-l-lm
restart: unless-stopped
depends_on:
- discovery
- kgs
volumes:
- configs:/var/plasma/configs
ports:
- "8201:8201"
ars-r-sr:
build: ./auxiliary_services/ARS-R-statistic-recommender
image: "plasma/ars-r-sr:${PLASMA_VERSION}"
hostname: plasma-ars-r-sr
restart: unless-stopped
environment:
- SERVICE_PORT=8221
- SPARQL_SM_STORE=http://fuseki:3030/sm
- SPARQL_ONTOLOGIES_STORE=http://fuseki:3030/ontologies
depends_on:
- fuseki
volumes:
- configs:/var/plasma/configs
ports:
- "8221:8221"
volumes:
fuseki_data:
mariadb_sas:
mariadb_dms:
configs:
kgs_ontologies:
dps_storage: