-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
171 lines (169 loc) · 5.47 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
170
171
version: '3.4'
x-logging: &default-logging
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
services:
frontend:
image: kanselarij/frontend-persberichten:0.3.0
links:
- identifier:backend
environment:
EMBER_OAUTH_API_KEY: "bd0483de-67e3-4ccf-8fcc-1aff6ff29675"
EMBER_OAUTH_BASE_URL: "https://authenticatie-ti.vlaanderen.be/op/v1/auth"
EMBER_OAUTH_REDIRECT_URL: "https://VLIVIA-dev.vlaanderen.be/authorization/callback"
EMBER_OAUTH_LOGOUT_URL: "https://authenticatie-ti.vlaanderen.be/op/v1/logout"
EMBER_OAUTH_RETURN_URL: "https://VLIVIA-dev.vlaanderen.be"
identifier:
image: semtech/mu-identifier:1.9.1
environment:
DEFAULT_MU_AUTH_ALLOWED_GROUPS_HEADER: "[{\"variables\":[],\"name\":\"public\"},{\"variables\":[\"published\"],\"name\":\"unauthenticated-published\"},{\"variables\":[],\"name\":\"clean\"}]"
restart: always
logging: *default-logging
dispatcher:
image: semtech/mu-dispatcher:2.0.0
volumes:
- ./config/dispatcher:/config
restart: always
logging: *default-logging
database:
image: semtech/mu-authorization:0.6.0-beta.7
environment:
MU_SPARQL_ENDPOINT: "http://triplestore:8890/sparql"
DATABASE_COMPATIBILITY: "Virtuoso"
DATABASE_OVERLOAD_RECOVERY: "on"
volumes:
- ./config/authorization:/config
restart: always
logging: *default-logging
triplestore:
image: redpencil/virtuoso:1.0.0
environment:
SPARQL_UPDATE: "true"
DEFAULT_GRAPH: "http://mu.semte.ch/application"
volumes:
- ./config/virtuoso/virtuoso.ini:/data/virtuoso.ini
- ./data/db:/data
restart: always
logging: *default-logging
delta-notifier:
image: semtech/mu-delta-notifier:0.1.0
volumes:
- ./config/delta:/config
restart: always
logging: *default-logging
migrations:
image: semtech/mu-migrations-service:0.7.0
links:
- triplestore:database
volumes:
- ./config/migrations:/data/migrations
restart: always
logging: *default-logging
mock-login:
image: kanselarij/mock-login-service:1.0.0
restart: always
logging: *default-logging
login:
image: kanselarij/press-releases-acmidm-login-service:0.2.0
environment:
MU_APPLICATION_AUTH_DISCOVERY_URL: "https://authenticatie-ti.vlaanderen.be/op"
MU_APPLICATION_AUTH_CLIENT_ID: "bd0483de-67e3-4ccf-8fcc-1aff6ff29675"
MU_APPLICATION_AUTH_REDIRECT_URI: "https://VLIVIA-dev.vlaanderen.be/authorization/callback"
MU_APPLICATION_AUTH_CLIENT_SECRET: "THIS IS OUR SECRET"
logging: *default-logging
restart: always
labels:
- "logging=true"
cache:
image: semtech/mu-cache:2.0.2
links:
- resource:backend
restart: always
logging: *default-logging
resource:
image: semtech/mu-cl-resources:1.21.1
volumes:
- ./config/resources:/config
environment:
CACHE_CLEAR_PATH: "http://cache/.mu/clear-keys"
restart: always
logging: *default-logging
file:
image: semtech/mu-file-service:3.1.2
volumes:
- ./data/files:/share
restart: always
logging: *default-logging
static-file:
image: semtech/static-file-service:0.2.0
volumes:
- ./data/static-files/:/data
restart: always
logging: *default-logging
csv-file-parser:
image: kanselarij/csv-parser-service:0.1.0
volumes:
- ./data/files:/share
restart: always
logging: *default-logging
collaboration:
image: kanselarij/press-releases-collaboration-service:0.7.1
restart: always
logging: *default-logging
publication-tasks-generator:
image: kanselarij/press-releases-publication-tasks-generator-service:0.1.2
restart: always
logging: *default-logging
belga-publication:
image: kanselarij/press-releases-belga-publication-service:0.1.2
volumes:
- ./data/belga:/share
environment:
BELGA_FTP_USERNAME: 'username'
BELGA_FTP_PASSWORD: 'password'
BELGA_FTP_HOST: 'host'
restart: always
logging: *default-logging
email-generator:
image: kanselarij/press-releases-email-generator-service:0.3.1
environment:
EMAIL_FROM: "[email protected]"
EMAIL_TO: "[email protected]"
volumes:
- ./data/files:/share
restart: always
logging: *default-logging
mail-delivery:
image: redpencil/deliver-email-service:0.3.3
environment:
MAILBOX_URI: "http://themis.vlaanderen.be/id/mailboxes/8240e358-b914-47d7-9c9d-c873bcbb76d5"
WELL_KNOWN_SERVICE: "test"
EMAIL_ADDRESS: "[email protected]"
EMAIL_CRON_PATTERN: "*/5 * * * *"
EMAIL_PROTOCOL: "MS_Graph_API"
MS_GRAPH_API_CLIENT_ID: "fe308fab-6938-4ab1-966f-f09d961c981d"
MS_GRAPH_API_TENANT_ID: "0c0338a6-9561-4ee8-b8d6-4e89cbd520a0"
MS_GRAPH_API_CLIENT_SECRET: "OUR SECRET"
volumes:
- ./data/files:/share
restart: always
logging: *default-logging
mailchimp-publication:
image: kanselarij/press-releases-mailchimp-publication-service:0.2.2
environment:
MAILCHIMP_API: 'api key'
MAILCHIMP_REPLY_TO: 'reply-to address'
MAILCHIMP_FROM_NAME: Vlivia-test
MAILCHIMP_LIST_ID: 5480352579
MAILCHIMP_INTEREST_CATEGORY_ID: fe04dcefd7
MAILCHIMP_KIND_CATEGORY_ID: 4757bb85ec
volumes:
- ./data/files:/share
restart: always
logging: *default-logging
api-publication:
image: kanselarij/press-releases-api-publication-service:0.2.1
restart: always
logging: *default-logging