-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
54 lines (53 loc) · 1.29 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
version: '3.4'
x-logging: &default-logging
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
services:
frontend:
image: redpencil/frontend-sparql-interactive-tutorial
links:
- identifier:backend
logging: *default-logging
restart: always
identifier:
image: semtech/mu-identifier:1.10.0
links:
- dispatcher:dispatcher
logging: *default-logging
restart: always
dispatcher:
image: semtech/mu-dispatcher:2.0.0
links:
- resource:resource
- database:database
- query-equivalence:query-equivalence
volumes:
- ./config/dispatcher:/config
logging: *default-logging
restart: always
database:
image: redpencil/virtuoso:1.0.0
environment:
SPARQL_UPDATE: "true"
DEFAULT_GRAPH: "http://mu.semte.ch/application"
volumes:
- ./data/db:/data
- ./config/virtuoso/virtuoso.ini:/data/virtuoso.ini
logging: *default-logging
restart: always
resource:
image: semtech/mu-cl-resources:1.20.0
links:
- database:database
volumes:
- ./config/resources:/config
logging: *default-logging
restart: always
query-equivalence:
image: redpencil/query-equivalence-service
links:
- database:database
logging: *default-logging
restart: always