forked from tmdt-buw/plasma
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
184 lines (168 loc) · 4.25 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
version: "3.5"
services:
########################### Infrastructure ######################################
neo4j:
image: neo4j:4.1.3
hostname: neo4j
restart: unless-stopped
environment:
- NEO4J_AUTH=neo4j/plasma
- NEO4J_USERNAME=neo4j
- NEO4J_PASSWORD=plasma
- NEO4J_dbms_allow__upgrade=true
volumes:
- neo4j_data:/data
healthcheck:
test: cypher-shell "match (n) return n;"
interval: 10s
timeout: 10s
retries: 3
start_period: 5s
ports:
- 7473:7473
- 7474:7474
- 7687:7687
mariadb-dss:
image: mariadb:latest
hostname: mariadb-dss
restart: unless-stopped
command: mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
environment:
- MYSQL_DATABASE=plasma-dss
- MYSQL_ROOT_PASSWORD=plasma
volumes:
- mariadb_dss:/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:
- 3306:3306
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
restart: unless-stopped
depends_on:
- discovery
- neo4j
ports:
- 8181:8181
dss:
image: "plasma/dss:${PLASMA_VERSION}"
hostname: plasma-dss
restart: unless-stopped
depends_on:
- discovery
- mariadb-dss
ports:
- 8185:8185
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
depends_on:
- discovery
- mariadb-dms
ports:
- 8186:8186
srs:
image: "plasma/srs:${PLASMA_VERSION}"
hostname: plasma-srs
restart: unless-stopped
depends_on:
- discovery
ports:
- 8190:8190
ui:
build: ./plasma-ui
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
ports:
- 8201:8201
volumes:
neo4j_data:
mariadb_dss:
mariadb_sas:
mariadb_dms: