-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
185 lines (183 loc) · 5.35 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
version: '3.4'
x-logging:
&default-logging
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
services:
toezicht-abb:
image: lblod/frontend-toezicht-abb:0.28.0
volumes:
- ./config/frontend:/config
labels:
- "logging=true"
restart: always
logging: *default-logging
identifier:
image: semtech/mu-identifier:1.9.1
environment:
DEFAULT_MU_AUTH_ALLOWED_GROUPS_HEADER: "[{\"variables\":[],\"name\":\"public\"}]"
labels:
- "logging=true"
restart: always
logging: *default-logging
dispatcher:
image: semtech/mu-dispatcher:2.0.0
volumes:
- ./config/dispatcher:/config
labels:
- "logging=true"
restart: always
logging: *default-logging
database:
image: semtech/mu-authorization:0.6.0-beta.5
environment:
MU_SPARQL_ENDPOINT: "http://virtuoso:8890/sparql"
DATABASE_OVERLOAD_RECOVERY: "true"
volumes:
- ./config/authorization:/config
labels:
- "logging=true"
restart: always
logging: *default-logging
virtuoso:
image: tenforce/virtuoso:1.3.2-virtuoso7.2.5.1
environment:
SPARQL_UPDATE: "true"
DEFAULT_GRAPH: "http://mu.semte.ch/application"
volumes:
- ./data/db:/data
- ./config/virtuoso/virtuoso.ini:/data/virtuoso.ini # Note: on production override this setting
- ./config/virtuoso/:/opt/virtuoso-scripts
labels:
- "logging=true"
restart: always
logging: *default-logging
migrations:
image: semtech/mu-migrations-service:0.6.0
environment:
MU_SPARQL_TIMEOUT: '300'
links:
- virtuoso:database
volumes:
- ./config/migrations:/data/migrations
labels:
- "logging=true"
restart: always
logging: *default-logging
import:
image: lblod/mandaten-import-service:0.4.3
links:
- virtuoso:database
volumes:
- ./data/imports:/data/imports # map to actual directory on your system
- ./config/import/queries:/data/queries
environment:
KEEP_DATA: "true"
CRON_PATTERN: "0 4 * * *"
DEFAULT_GRAPH: "http://mu.semte.ch/graphs/organizations/141d9d6b-54af-4d17-b313-8d1c30bc3f5b" # ABB
labels:
- "logging=true"
restart: always
logging: *default-logging
login:
image: lblod/acmidm-login-service:0.9.2
environment:
MU_APPLICATION_AUTH_DISCOVERY_URL: "https://authenticatie-ti.vlaanderen.be/op/.well-known/openid-configuration"
MU_APPLICATION_AUTH_CLIENT_ID: "68799bf1-f9eb-4d23-be16-c07c31ae342c"
MU_APPLICATION_AUTH_REDIRECT_URI: "https://besluiten.abb.lblod.info/authorization/callback"
MU_APPLICATION_AUTH_CLIENT_SECRET: "secret"
MU_APPLICATION_AUTH_ROLE_CLAIM: "abb_databanktoezicht_rol_3d"
MU_APPLICATION_AUTH_USERID_CLAIM: "sub"
MU_APPLICATION_AUTH_ACCOUNTID_CLAIM: "sub"
MU_APPLICATION_GRAPH: "http://mu.semte.ch/graphs/organizations/141d9d6b-54af-4d17-b313-8d1c30bc3f5b" # ABB
labels:
- "logging=true"
restart: always
logging: *default-logging
cache:
image: semtech/mu-cache:2.0.0
links:
- resource:backend
restart: always
labels:
- "logging=true"
logging: *default-logging
resource:
image: semtech/mu-cl-resources:1.19.0
environment:
CACHE_CLEAR_PATH: "http://cache/.mu/clear-keys"
volumes:
- ./config/resources:/config
labels:
- "logging=true"
restart: always
logging: *default-logging
file:
image: semtech/mu-file-service:3.1.0
volumes:
- ./data/files:/share
labels:
- "logging=true"
restart: always
logging: *default-logging
search:
image: semtech/mu-search:0.9.3
volumes:
- ./config/search:/config
- ./data/files:/data
- ./data/search/cache/:/cache
environment:
NUMBER_OF_THREADS: 16 # overwrite for development
JRUBY_OPTIONS: "-J-Xmx16g" # overwrite for development
labels:
- "logging=true"
restart: always
logging: *default-logging
tika:
image: apache/tika:1.28.3-full
labels:
- "logging=true"
restart: always
logging: *default-logging
elasticsearch:
image: semtech/mu-search-elastic-backend:1.0.1
volumes:
- ./data/elasticsearch/:/usr/share/elasticsearch/data
environment:
- discovery.type=single-node
labels:
- "logging=true"
restart: always
logging: *default-logging
enrich-submission:
image: lblod/enrich-submission-service:1.12.1
volumes:
- ./config/semantic-forms:/share/semantic-forms
- ./data/files/submissions:/share/submissions
environment:
ACTIVE_FORM_FILE: "share://semantic-forms/20241009142125-forms.ttl"
PUBLIC_GRAPH: "http://mu.semte.ch/graphs/organizations/141d9d6b-54af-4d17-b313-8d1c30bc3f5b" # ABB
FILE_GRAPH: "http://mu.semte.ch/graphs/organizations/141d9d6b-54af-4d17-b313-8d1c30bc3f5b" # ABB
OVERRULE_ORG_CHECK_ON_READ: "true"
labels:
- "logging=true"
restart: always
logging: *default-logging
deltanotifier:
image: semtech/mu-delta-notifier:0.1.0
volumes:
- ./config/delta:/config
labels:
- "logging=true"
restart: always
logging: *default-logging
search-query-management:
image: lblod/toezicht-search-query-management-service:0.3.6
volumes:
- ./config/search-query:/share/search-query
labels:
- "logging=true"
restart: always
logging: *default-logging