-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
130 lines (128 loc) · 3.43 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
version: "3.4"
x-logging: &default-logging
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
services:
identifier:
image: semtech/mu-identifier:1.10.3
environment:
DEFAULT_MU_AUTH_ALLOWED_GROUPS_HEADER: '[{"variables":[],"name":"public"},{"variables":[],"name":"clean"}]'
restart: always
logging: *default-logging
dispatcher:
image: semtech/mu-dispatcher:2.1.0-beta.2
volumes:
- ./config/dispatcher:/config
restart: always
logging: *default-logging
frontend:
image: kanselarij/frontend-themis:0.11.1-fastboot
links:
- identifier:backend
restart: always
environment:
EMBER_FASTBOOT_HOST: "themis-test.vlaanderen.be"
logging: *default-logging
database:
image: semtech/mu-authorization:0.6.0-beta.8
environment:
MU_SPARQL_ENDPOINT: "http://virtuoso:8890/sparql"
DATABASE_COMPATIBILITY: "Virtuoso"
DATABASE_OVERLOAD_RECOVERY: "on"
volumes:
- ./config/authorization:/config
restart: always
logging: *default-logging
delta-notifier:
image: semtech/mu-delta-notifier:0.4.0
volumes:
- ./config/delta:/config
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
restart: always
logging: *default-logging
migrations:
image: semtech/mu-migrations-service:0.9.0
links:
- virtuoso:database
volumes:
- ./config/migrations:/data/migrations
restart: always
logging: *default-logging
resource:
image: semtech/mu-cl-resources:1.25.0
volumes:
- ./config/resources:/config
environment:
CACHE_CLEAR_PATH: "http://cache/.mu/clear-keys"
restart: always
logging: *default-logging
cache:
image: semtech/mu-cache:2.0.2
links:
- resource:backend
restart: always
logging: *default-logging
file:
image: semtech/mu-file-service:3.3.0
volumes:
- ./data/files:/share
restart: always
logging: *default-logging
uri-info:
image: redpencil/mu-uri-info-service:0.2.1
restart: always
logging: *default-logging
resource-labels-cache:
image: semtech/mu-cache:2.0.2
links:
- resource-labels:backend
restart: always
logging: *default-logging
resource-labels:
image: lblod/resource-label-service:0.3.2
environment:
DEFAULT_LANGUAGE: "nil"
restart: always
logging: *default-logging
publication-consumer:
image: kanselarij/themis-publication-consumer:2.2.0
environment:
LOG_SPARQL_ALL: "false"
DEBUG_AUTH_HEADERS: "false"
volumes:
- ./data/downloaded-publications:/tmp
- ./data/files:/share
restart: always
logging: *default-logging
themis-same-as:
image: kanselarij/themis-same-as-service:0.4.1
environment:
LOG_SPARQL_ALL: "false"
DEBUG_AUTH_HEADERS: "false"
restart: always
logging: *default-logging
dcat-dataset-publication:
image: kanselarij/dcat-dataset-publication-service:0.4.1
environment:
LOG_SPARQL_ALL: "false"
DEBUG_AUTH_HEADERS: "false"
volumes:
- ./data/files:/share
restart: always
logging: *default-logging
project-scripts:
image: semtech/simple-script-store:1.0.0
volumes:
- ./scripts/:/app/scripts/
restart: "no"