-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
169 lines (168 loc) · 4.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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
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: "[{\"name\":\"clean\", \"variables\":[]}, {\"name\":\"rollvolet\", \"variables\":[]}]"
restart: always
logging: *default-logging
labels:
- "logging=true"
dispatcher:
image: semtech/mu-dispatcher:2.1.0-beta.2
volumes:
- ./config/dispatcher:/config
restart: always
logging: *default-logging
labels:
- "logging=true"
frontend:
image: rollvolet/frontend-price-management:1.4.1
restart: always
logging: *default-logging
labels:
- "logging=true"
project-scripts:
image: semtech/simple-script-store:1.0.0
volumes:
- ./config/project-scripts/:/app/scripts/
restart: "no"
logging: *default-logging
labels:
- "logging=true"
database:
image: semtech/mu-authorization:0.6.0-beta.8
environment:
MU_SPARQL_ENDPOINT: "http://triplestore:8890/sparql"
volumes:
- ./config/authorization:/config
restart: always
logging: *default-logging
labels:
- "logging=true"
triplestore:
image: redpencil/virtuoso:1.2.0-rc.1
environment:
SPARQL_UPDATE: "true"
DEFAULT_GRAPH: "http://mu.semte.ch/graphs/rollvolet"
volumes:
- ./config/virtuoso/virtuoso.ini:/data/virtuoso.ini
- ./config/db/:/opt/virtuoso-scripts
- ./data/db:/data
restart: always
logging: *default-logging
labels:
- "logging=true"
delta-notifier:
image: semtech/mu-delta-notifier:0.4.0
volumes:
- ./config/delta:/config
restart: always
logging: *default-logging
labels:
- "logging=true"
migrations:
image: semtech/mu-migrations-service:0.9.0
environment:
MU_SPARQL_ENDPOINT: "http://triplestore:8890/sparql"
volumes:
- ./config/migrations:/data/migrations
restart: always
logging: *default-logging
labels:
- "logging=true"
msal-login:
image: rollvolet/msal-login-service:1.0.0
environment:
AUTH_REFRESH_TOKENS: "true"
restart: always
logging: *default-logging
labels:
- "logging=true"
token-cache:
image: redis:6.2.6
volumes:
- ./data/token-cache:/data
restart: always
logging: *default-logging
labels:
- "logging=true"
registration:
image: semtech/mu-registration-service:2.7.3
entrypoint: echo "Only needed for mu script"
environment:
USERS_GRAPH: "http://mu.semte.ch/graphs/users"
SESSIONS_GRAPH: "http://mu.semte.ch/graphs/sessions"
restart: "no"
logging: *default-logging
labels:
- "logging=true"
mock-login:
image: semtech/mu-login-service:3.0.0
environment:
USERS_GRAPH: "http://mu.semte.ch/graphs/users"
SESSIONS_GRAPH: "http://mu.semte.ch/graphs/sessions"
restart: always
logging: *default-logging
labels:
- "logging=true"
search:
image: semtech/mu-search:0.10.0-beta.5
volumes:
- ./config/search:/config
environment:
JRUBY_OPTIONS: "-J-Xmx4g"
NUMBER_OF_THREADS: 16
LOG_LEVEL: "info"
restart: always
logging: *default-logging
labels:
- "logging=true"
elasticsearch:
image: semtech/mu-search-elastic-backend:1.1.0
volumes:
- ./data/elasticsearch/:/usr/share/elasticsearch/data
environment:
- discovery.type=single-node
- JRUBY_OPTIONS="-Xms4g Xmx4g"
restart: always
logging: *default-logging
labels:
- "logging=true"
cache:
image: semtech/mu-cache:2.0.2
links:
- resource:backend
restart: always
logging: *default-logging
labels:
- "logging=true"
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
labels:
- "logging=true"
file:
image: semtech/mu-file-service:3.3.2
volumes:
- ./data/files:/share
restart: always
logging: *default-logging
labels:
- "logging=true"
sequence-numbers:
image: rollvolet/sequence-numbers-service:0.1.0
restart: always
logging: *default-logging
labels:
- "logging=true"