-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
131 lines (129 loc) · 3.16 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
version: '3.4'
x-logging:
&default-logging
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
services:
frontend:
image: kanselarij/frontend-valvas:1.7.1
links:
- identifier:backend
labels:
- "logging=true"
restart: always
logging: *default-logging
identifier:
image: semtech/mu-identifier:1.10.0
links:
- dispatcher:dispatcher
environment:
DEFAULT_MU_AUTH_ALLOWED_GROUPS_HEADER: "[{\"variables\":[],\"name\":\"public\"}]"
DEFAULT_ACCESS_CONTROL_ALLOW_ORIGIN_HEADER: "*"
labels:
- "logging=true"
restart: always
logging: *default-logging
dispatcher:
image: semtech/mu-dispatcher:1.1.2
volumes:
- ./config/dispatcher:/config
labels:
- "logging=true"
restart: always
logging: *default-logging
database:
image: semtech/mu-authorization:0.6.0-beta.8
environment:
MU_SPARQL_ENDPOINT: "http://virtuoso:8890/sparql"
volumes:
- ./config/authorization:/config
labels:
- "logging=true"
restart: always
logging: *default-logging
delta-notifier:
image: semtech/mu-delta-notifier:0.1.0
volumes:
- ./config/delta:/config
labels:
- "logging=true"
restart: always
logging: *default-logging
virtuoso:
image: redpencil/virtuoso:1.0.0
environment:
SPARQL_UPDATE: "true"
DEFAULT_GRAPH: "http://mu.semte.ch/graphs/public"
volumes:
- ./data/db:/data
- ./config/virtuoso/virtuoso.ini:/data/virtuoso.ini
labels:
- "logging=true"
restart: always
logging: *default-logging
migrations:
image: semtech/mu-migrations-service:0.7.0
links:
- virtuoso:database
environment:
MU_SPARQL_TIMEOUT: '300'
volumes:
- ./config/migrations:/data/migrations
labels:
- "logging=true"
restart: always
logging: *default-logging
cache:
image: semtech/mu-cache:2.0.1
links:
- resource:backend
labels:
- "logging=true"
restart: always
logging: *default-logging
resource:
image: semtech/mu-cl-resources:1.22.0
environment:
CACHE_CLEAR_PATH: "http://cache/.mu/clear-keys"
volumes:
- ./config/resources:/config
labels:
- "logging=true"
restart: always
logging: *default-logging
search:
image: semtech/mu-search:0.8.0-beta.3
volumes:
- ./config/search:/config
labels:
- "logging=true"
restart: always
logging: *default-logging
elasticsearch:
image: semtech/mu-search-elastic-backend:1.0.1
environment:
- cluster.initial_master_nodes=elasticsearch
- node.name=elasticsearch
volumes:
- ./data/elasticsearch/:/usr/share/elasticsearch/data
labels:
- "logging=true"
restart: always
logging: *default-logging
file:
image: semtech/mu-file-service:3.2.0
volumes:
- ./data/files:/share
restart: always
logging: *default-logging
publication-consumer:
image: kanselarij/valvas-publication-consumer:1.1.4
environment:
LOG_SPARQL_ALL: "false"
DEBUG_AUTH_HEADERS: "false"
volumes:
- ./data/files:/share
restart: always
logging: *default-logging