-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
53 lines (52 loc) · 1.36 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
version: '3.4'
services:
frontend:
image: redpencil/frontend-poc-diff:latest
links:
- identifier:backend
identifier:
image: semtech/mu-identifier:1.7.0
links:
- dispatcher:dispatcher
environment:
DEFAULT_MU_AUTH_ALLOWED_GROUPS_HEADER: "[{\"variables\":[],\"name\":\"public\"},{\"variables\":[],\"name\":\"clear\"}]"
dispatcher:
image: semtech/mu-dispatcher:1.1.2
links:
- resource:resource
volumes:
- ./config/dispatcher:/config
database:
image: semtech/mu-authorization:0.6.0-beta.7
volumes:
- ./config/authorization:/config
environment:
MU_SPARQL_ENDPOINT: "http://triplestore:8890/sparql"
DATABASE_COMPATIBILITY: "Virtuoso"
DELTA_CACHE_TIMEOUT: 50
links:
- triplestore:triplestore
labels:
- logging
triplestore:
image: tenforce/virtuoso:1.3.2-virtuoso7.2.2
environment:
SPARQL_UPDATE: "true"
DEFAULT_GRAPH: "http://mu.semte.ch/application"
volumes:
- ./data/db:/data
resource:
image: semtech/mu-cl-resources:1.19.0
links:
- database
volumes:
- ./config/resources:/config
deltanotifier:
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