forked from redpencilio/app-poc-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
74 lines (64 loc) · 1.76 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
version: '3.9'
services:
triplestore:
image: tenforce/virtuoso:latest
environment:
- DBA_PASSWORD=access
- SPARQL_UPDATE=true
- DEFAULT_GRAPH=http://mu.semte.ch/application
deltanotifier:
image: deltanotifierincludes
# image: semtech/mu-delta-notifier:latest
environment:
LOG_REQUESTS: "true"
DEBUG_DELTA_SEND: "true"
DEBUG_DELTA_MATCH: "true"
#DEBUG_TRIPLE_MATCHES_SPEC: "true"
labels:
- logging
database:
image: semtech/mu-authorization:feature-consistency-with-credo
volumes:
- ./config/authorization:/config:Z
environment:
MU_SPARQL_ENDPOINT: "http://triplestore:8890/sparql"
LOG_OUTGOING_SPARQL_QUERIES: "true"
DATABASE_COMPATIBILITY: "Virtuoso"
DELTA_CACHE_TIMEOUT: 50
INSPECT_ACCESS_RIGHTS_PROCESSING: "true"
LOG_INCOMING_SPARQL_QUERIES: "true"
LOG_ACCESS_RIGHTS: "true"
links:
- triplestore:triplestore
labels:
- logging
file:
image: semtech/mu-file-service:latest
links:
- database:database
environment:
LOG_LEVEL: "debug"
volumes:
- ./data/files:/share
resource:
image: semtech/mu-cl-resources:latest
links:
- database:database
volumes:
- ./config/resources:/config:Z
frontend:
image: frontendapp
volumes:
- ./frontend-service/webapp/:/webapp/
dispatcher:
image: semtech/mu-dispatcher:2.0.0
links:
- resource:resource
volumes:
- ./config/dispatcher:/config:Z
identifier:
image: semtech/mu-identifier:feature-extended-timeout
links:
- dispatcher:dispatcher
environment:
DEFAULT_MU_AUTH_ALLOWED_GROUPS_HEADER: "[{\"variables\":[],\"name\":\"public\"},{\"variables\":[],\"name\":\"clear\"}]"