-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
97 lines (95 loc) · 2.84 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
version: '3.4'
services:
identifier:
image: semtech/mu-identifier:1.9.1
environment:
SESSION_COOKIE_SECURE: "on"
DEFAULT_ACCESS_CONTROL_ALLOW_ORIGIN_HEADER: "*"
DEFAULT_MU_AUTH_ALLOWED_GROUPS_HEADER: "[{\"variables\":[],\"name\":\"clean\"},{\"variables\":[],\"name\":\"public\"},{\"variables\":[],\"name\":\"images\"}]"
links:
- dispatcher:dispatcher
ports:
- "8080:80"
dispatcher:
image: semtech/mu-dispatcher:2.0.0
links:
- sync:sync
- mu-search:mu-search
volumes:
- ./config/dispatcher:/config
database:
image: semtech/mu-authorization:latest
environment:
MU_SPARQL_ENDPOINT: "http://triplestore:8890/sparql"
volumes:
- ./config/authorization:/config
triplestore:
image: redpencil/virtuoso:1.0.0
environment:
SPARQL_UPDATE: "true"
DEFAULT_GRAPH: "http://mu.semte.ch/application"
ports:
- "8890:8890"
volumes:
- ./data/db:/data
- ./config/virtuoso/virtuoso.ini:/data/virtuoso.ini
payments:
image: madnificent/mollie-payment-service:feature-generic
# build:
# context: ../mollie-payment-service
# dockerfile: Dockerfile
links:
- database:database
environment:
MOLLIE_API_KEY: "your mollie api key"
MOLLIE_REDIRECT_URL: "http://frontend/checkout/success"
MOLLIE_BASE_WEBHOOK_URL: "http://backend/payments/callback"
# TODO: move to delta listener in order service
BACKEND_CALLBACK_HOSTNAME: "order"
BACKEND_CALLBACK_PORT: "80"
BACKEND_CALLBACK_PATH: "/buy/callback"
sync:
image: semtech/mu-javascript-template
environment:
NODE_ENV: "development"
ESS_CLIENT_ID: "your application's client id"
ESS_CLIENT_SECRET: "your application's client secret"
ESS_IDP: "https://login.inrupt.com"
MU_SPARQL_ENDPOINT: "http://triplestore:8890/sparql"
links:
- database:database
volumes:
- ../solid-sync-service/:/app/
mu-search:
image: semtech/mu-search:latest
links:
- database:database
- elasticsearch:elasticsearch
volumes:
- ./config/search:/config
elasticsearch:
image: semtech/mu-search-elastic-backend:1.0.1
volumes:
- ./data/elasticsearch/:/usr/share/elasticsearch/data
- ./config/elasticsearch/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml
environment:
- discovery.type=single-node
deltanotifier:
image: semtech/mu-delta-notifier
volumes:
- ./config/delta:/config
file:
image: semtech/mu-file-service:3.2.0
links:
- database:database
volumes:
- ./data/files:/share
order:
image: semtech/mu-javascript-template
environment:
NODE_ENV: "development"
BROKER_WEB_ID: "https://broker.mu/"
links:
- database:database
volumes:
- ../solid-shop-order-service/:/app/