forked from big-data-europe/graph-acl-basics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
76 lines (76 loc) · 1.6 KB
/
docker-compose.yml
File metadata and controls
76 lines (76 loc) · 1.6 KB
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
version: "2"
services:
sandbox:
image: semtech/ember-proxy-service
ports:
- "9000:80"
links:
- identifier:backend
volumes:
- ./mu-query-rewriter-sandbox:/app
app:
image: semtech/ember-proxy-service
ports:
- "9001:80"
links:
- identifier:backend
volumes:
- ./rewriter-sandbox-application/dist:/app
identifier:
image: semtech/mu-identifier:1.3.0
links:
- dispatcher:dispatcher
ports:
- "8011:80"
dispatcher:
image: semtech/mu-dispatcher:1.1.0
links:
- resource:resource
- as:as
volumes:
- ./config/dispatcher:/config
ports:
- "4028:80"
as:
image: bde2020/mu-query-rewriter
links:
- db:database
environment:
MESSAGE_LOGGING: "true"
PRINT_SPARQL_QUERIES: "true"
CALCULATE_ANNOTATIONS: "true"
REWRITE_SELECT_QUERIES: "true"
PLUGIN: "school-values"
DEBUG: "true"
volumes:
- ./config/rewriter:/config
ports:
- "4005:4005"
- "4027:8890"
generator:
build: ./random-data-generator
links:
- as:database
volumes:
- ./random-data-generator:/app
ports:
- "4030:80"
db:
image: tenforce/virtuoso:1.0.0-virtuoso7.2.4
environment:
SPARQL_UPDATE: "true"
DEFAULT_GRAPH: "http://mu.semte.ch/application"
ports:
- "8890:8890"
volumes:
- ./data/db:/data
resource:
image: semtech/mu-cl-resources
environment:
MU_DECLARE_RESOURCE_TYPES: "true"
links:
- as:database
volumes:
- ./config/resources:/config
ports:
- "4444:80"