-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
97 lines (96 loc) · 2.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
services:
identifier:
image: semtech/mu-identifier:1.10.3
environment:
SESSION_COOKIE_SECURE: "on"
DEFAULT_MU_AUTH_ALLOWED_GROUPS_HEADER: "[{\"variables\":[],\"name\":\"public\"}]"
restart: always
labels:
- "logging=true"
dispatcher:
image: semtech/mu-dispatcher:2.1.0-beta.2
volumes:
- ./config/dispatcher:/config
restart: always
labels:
- "logging=true"
# Your extra services here
frontend:
image: redpencil/frontend-timekeeper:0.2.0
links:
- identifier:backend
restart: always
labels:
- "logging=true"
resource:
image: semtech/mu-cl-resources:1.25.0
volumes:
- ./config/resources:/config
restart: always
labels:
- "logging=true"
kimai-sync:
image: redpencil/timekeeper-kimai-sync-service:0.2.0
environment:
API_TOKEN: "your_secret_kimai_api_token_here"
KIMAI_ENDPOINT: "https://test.kimai.redpencil.io/api"
DEFAULT_MU_AUTH_SCOPE: "http://services.redpencil.io/timekeeper-kimai-sync-service"
restart: always
labels:
- "logging=true"
migrations:
image: semtech/mu-migrations-service:0.9.0
links:
- triplestore:database
environment:
MU_SPARQL_TIMEOUT: 600
volumes:
- ./config/migrations:/data/migrations
restart: always
labels:
- "logging=true"
delta-notifier:
image: semtech/mu-delta-notifier:0.4.0
volumes:
- ./config/delta:/config/
restart: always
labels:
- "logging=true"
database:
image: semtech/sparql-parser:0.0.13
volumes:
- ./config/authorization/:/config/
- ./data/authorization/:/data/
restart: always
labels:
- "logging=true"
triplestore:
image: redpencil/virtuoso:1.3.0-rc.1
environment:
SPARQL_UPDATE: "true"
volumes:
- ./data/db:/data
- ./config/virtuoso/virtuoso.ini:/data/virtuoso.ini
restart: always
labels:
- "logging=true"
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"
links:
- database:database
restart: always
labels:
- "logging=true"
registration:
image: semtech/mu-registration-service:2.7.3
environment:
USERS_GRAPH: "http://mu.semte.ch/graphs/users"
SESSIONS_GRAPH: "http://mu.semte.ch/graphs/sessions"
links:
- database:database
restart: always
labels:
- "logging=true"