forked from eclipse-arrowhead/core-java-spring
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose-4-3-0-amd64.yml
149 lines (143 loc) · 3.91 KB
/
docker-compose-4-3-0-amd64.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
version: "3"
services:
mysql:
container_name: mysql
image: mysql:5.7
environment:
- MYSQL_ROOT_PASSWORD=THIS_WILL_BE_YOUR_CONTAINERS_ROOT_PW
volumes:
- mysql:/var/lib/mysql
- ./sql:/docker-entrypoint-initdb.d/
ports:
- 3306:3306
serviceregistry:
container_name: serviceregistry
image: svetlint/serviceregistry:4.3.0
depends_on:
- mysql
volumes:
# dont forget to change the route of the locally available config file
# format is <file on your local machine, (change this!!!)>:<file location inside the container (don't change this part!!!)>
- ./core_system_config/serviceregistry.properties:/serviceregistry/application.properties
ports:
- 8443:8443
authorization:
container_name: authorization
image: svetlint/authorization:4.3.0
depends_on:
- mysql
volumes:
- ./core_system_config/authorization.properties:/authorization/application.properties
ports:
- 8445:8445
orchestrator:
container_name: orchestrator
image: svetlint/orchestrator:4.3.0
depends_on:
- mysql
volumes:
- ./core_system_config/orchestrator.properties:/orchestrator/application.properties
ports:
- 8441:8441
# eventhandler:
# container_name: eventhandler
# image: svetlint/eventhandler:4.3.0
# depends_on:
# - mysql
# volumes:
# - ./core_system_config/eventhandler.properties:/eventhandler/application.properties
# ports:
# - 8455:8455
#
# gatekeeper:
# container_name: gatekeeper
# image: svetlint/gatekeeper:4.3.0
# depends_on:
# - mysql
# volumes:
# - ./core_system_config/gatekeeper.properties:/gatekeeper/application.properties
# ports:
# - 8449:8449
#
# gateway:
# container_name: gateway
# image: svetlint/gateway:4.3.0
# depends_on:
# - mysql
# volumes:
# - ./core_system_config/gateway.properties:/gateway/application.properties
# ports:
# - 8453:8453
#
# certificate-authority:
# container_name: certificate-authority
# image: svetlint/certificate-authority:4.3.0
# depends_on:
# - mysql
# volumes:
# - ./core_system_config/certificateauthority.properties:/certificateauthority/application.properties
# ports:
# - 8448:8448
#
# onboarding-controller:
# container_name: onboarding-controller
# image: svetlint/onboarding-controller:4.3.0
# depends_on:
# - mysql
# volumes:
# - ./core_system_config/onboardingcontroller.properties:/onboardingcontroller/application.properties
# ports:
# - 8435:8435
#
# deviceregistry:
# container_name: deviceregistry
# image: svetlint/deviceregistry:4.3.0
# depends_on:
# - mysql
# volumes:
# - ./core_system_config/deviceregistry.properties:/deviceregistry/application.properties
# ports:
# - 8439:8439
#
# systemregistry:
# container_name: systemregistry
# image: svetlint/systemregistry:4.3.0
# depends_on:
# - mysql
# volumes:
# - ./core_system_config/systemregistry.properties:/systemregistry/application.properties
# ports:
# - 8437:8437
#
# choreographer:
# container_name: choreographer
# image: svetlint/choreographer:4.3.0
# depends_on:
# - mysql
# volumes:
# - ./core_system_config/choreographer.properties:/choreographer/application.properties
# ports:
# - 8457:8457
#
# datamanager:
# container_name: datamanager
# image: svetlint/datamanager:4.3.0
# depends_on:
# - mysql
# volumes:
# - ./core_system_config/datamanager.properties:/datamanager/application.properties
# ports:
# - 8461:8461
#
# translator:
# container_name: translator
# image: svetlint/translator:4.3.0
# depends_on:
# - mysql
# volumes:
# - ./core_system_config/translator.properties:/translator/application.properties
# ports:
# - 8462:8462
volumes:
mysql:
external: true