-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
63 lines (62 loc) · 1.64 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
version: '3.4'
services:
frontend:
image: bravoer/music-crm-frontend:1.1.0
links:
- identifier:backend
identifier:
image: semtech/mu-identifier:1.5.0
environment:
MU_ENCRYPTION_SALT: mysecret
MU_SIGNING_SALT: anothersecret
MU_SECRET_KEY_BASE: yetanothersecretthatmustbeatleastsixtyforcharacterslongfoobarbazzzzz
dispatcher:
image: semtech/mu-dispatcher:1.1.2
volumes:
- ./config/dispatcher:/config
database:
image: tenforce/virtuoso:1.1.0-virtuoso7.2.2
environment:
SPARQL_UPDATE: "true"
volumes:
- ./database:/data
registration:
image: semtech/mu-registration-service:2.6.0
environment:
MU_APPLICATION_SALT: ''
login:
image: semtech/mu-login-service:2.8.0
environment:
MU_APPLICATION_SALT: ''
authorization:
image: semtech/mu-authorization-service:0.1.0
userprofile:
image: bravoer/user-profile-service:0.3.0
file:
image: semtech/mu-file-service:2.4.0
volumes:
- ./storage:/data
environment:
SECRET_KEY_BASE: my-secret-production-key-for-rails
MU_APPLICATION_MAX_FILE_SIZE: 50M
STREAMING: "true"
cache:
image: semtech/mu-cache:0.6.0
links:
- resource:backend
resource:
image: semtech/mu-cl-resources:1.17.1
volumes:
- ./config/resources:/config
migrations:
image: semtech/mu-migrations-service:0.4.0
volumes:
- ./config/migrations:/data/migrations
export:
image: semtech/mu-export-service:1.0.0
volumes:
- ./config/export:/config
labels:
image: bravoer/label-printer-service:1.0.0
search:
image: bravoer/advanced-search-service:1.1.0