-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
58 lines (51 loc) · 1.25 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
version: "3"
services:
# Frontend
frontend:
build: ./frontend
ports:
- "80:80"
links:
- dispatcher:backend
volumes:
- ./config/nginx:/etc/nginx/conf.d
# Dispatcher
dispatcher:
image: semtech/mu-dispatcher:1.1.0
links:
- resource:resource
- graph-identifier:graph
volumes:
- ./config/dispatcher:/config
# Identify the graphs a given resource lives in
graph-identifier:
image: terraformtestcontainerregistry.azurecr.io/oslo2/graph-identifier:1.0.0
depends_on:
- database
links:
- database:database
# Cache
resource:
image: semtech/mu-cache:0.5.0
environment:
- CACHE_BACKEND=http://backend
# Convert JSON-API to SPARQL and viceversa
backend:
image: semtech/mu-cl-resources:1.15.0
links:
- database:database
volumes:
- ./config/resources:/config
environment:
- MU_APPLICATION_GRAPH=http://data.vlaanderen.be/id/dataset/cataloog
## Database
database:
image: tenforce/virtuoso:1.3.0-virtuoso7.2.2
volumes:
- ./data/db:/data
- ./config/toLoad:/data/toLoad
ports:
- "8890:8890"
environment:
SPARQL_UPDATE: "true"
DEFAULT_GRAPH: "http://data.vlaanderen.be/id/dataset/cataloog"