-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
executable file
·249 lines (231 loc) · 6.43 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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
version: "3.7"
networks:
edgex-network:
driver: bridge
volumes:
db-data:
nodered-data:
license-data:
# all common shared environment variables defined here:
x-common-env-variables: &common-variables
EDGEX_SECURITY_SECRET_STORE: "false"
Clients_Data_Host: edgex-core-data
Clients_CoreData_Host: edgex-core-data
Clients_Metadata_Host: edgex-core-metadata
Clients_Command_Host: edgex-core-command
Clients_VirtualDevice_Host: device-virtual
Databases_Primary_Host: edgex-redis
# license
EDGEXPERT_LICENSE_PATH: /edgexpert/licenses/
services:
#################################################################
# Database Services
#################################################################
redis:
image: redis:6.2.3
container_name: redis
hostname: redis
networks:
edgex-network:
aliases:
- edgex-redis
read_only: true
security_opt:
- no-new-privileges:true
volumes:
- db-data:/data:z
logging:
driver: "json-file"
options:
max-size: "10mb"
max-file: "20"
#################################################################
# Core Services
#################################################################
core-metadata:
image: iotechsys/edgexpert-core-metadata:1.8
container_name: core-metadata
hostname: core-metadata
command: "--confdir=/res"
ports:
- "48081:48081"
networks:
edgex-network:
aliases:
- edgex-core-metadata
read_only: true
security_opt:
- no-new-privileges:true
environment:
<<: *common-variables
Service_Host: core-metadata
volumes:
- license-data:/edgexpert/licenses/:ro
logging:
driver: "json-file"
options:
max-size: "10mb"
max-file: "20"
depends_on:
- edgexpert-license
- redis
core-data:
image: iotechsys/edgexpert-core-data:1.8
container_name: core-data
hostname: core-data
command: "--confdir=/res"
ports:
- "48080:48080"
- "5563:5563"
networks:
edgex-network:
aliases:
- edgex-core-data
read_only: true
security_opt:
- no-new-privileges:true
environment:
<<: *common-variables
Service_Host: core-data
volumes:
- license-data:/edgexpert/licenses/:ro
logging:
driver: "json-file"
options:
max-size: "10mb"
max-file: "20"
depends_on:
- edgexpert-license
- redis
- core-metadata
core-command:
image: iotechsys/edgexpert-core-command:1.8
container_name: core-command
hostname: core-command
command: "--confdir=/res"
ports:
- "48082:48082"
networks:
edgex-network:
aliases:
- edgex-core-command
read_only: true
security_opt:
- no-new-privileges:true
environment:
<<: *common-variables
Service_Host: core-command
volumes:
- license-data:/edgexpert/licenses/:ro
logging:
driver: "json-file"
options:
max-size: "10mb"
max-file: "20"
depends_on:
- edgexpert-license
- redis
- core-metadata
#################################################################
# Device Services
#################################################################
device-virtual:
image: iotechsys/edgexpert-device-virtual:1.8
container_name: device-virtual
hostname: device-virtual
command: "--confdir=/res"
ports:
- "49990:49990"
networks:
edgex-network:
aliases:
- device-virtual
read_only: true
security_opt:
- no-new-privileges:true
environment:
<<: *common-variables
Service_Host: device-virtual
logging:
driver: "json-file"
options:
max-size: "10mb"
max-file: "20"
depends_on:
- edgexpert-license
- core-data
- core-metadata
#################################################################
# App Services
#################################################################
app-service-mqtt-export:
image: iotechsys/edgexpert-app-configurable:1.8
container_name: app-service-mqtt-export
hostname: app-service-mqtt-export
networks:
edgex-network:
aliases:
- app-service-mqtt-export
read_only: true
security_opt:
- no-new-privileges:true
environment:
<<: *common-variables
Service_Host: app-service-mqtt-export
Database_Host: edgex-redis
MessageBus_SubscribeHost_Host: edgex-core-data
# pipeline overrides
WRITABLE_PIPELINE_FUNCTIONS_MQTTSECRETSEND_PARAMETERS_BROKERADDRESS: tcp://broker.hivemq.com:1883
WRITABLE_PIPELINE_FUNCTIONS_MQTTSECRETSEND_PARAMETERS_TOPIC: iotech_topic
WRITABLE_PIPELINE_FUNCTIONS_MQTTSECRETSEND_PARAMETERS_CLIENTID: iotech
command: "--confdir=/res --profile=mqtt-export"
volumes:
- license-data:/edgexpert/licenses/:ro
logging:
driver: "json-file"
options:
max-size: "10mb"
max-file: "20"
depends_on:
- edgexpert-license
- core-data
#################################################################
# EdgeXpert License
#################################################################
edgexpert-license:
image: iotechsys/sys-mgmt-demo-license-prov:nova-demo
container_name: edgexpert-license
hostname: edgexpert-license
read_only: true
security_opt:
- no-new-privileges:true
environment:
<<: *common-variables
volumes:
- license-data:/lic:ro
logging:
driver: "json-file"
options:
max-size: "10mb"
max-file: "20"
#################################################################
# Metadata Setup
#################################################################
metadata-setup:
image: iotechsys/edgexpert-demo-lua:metadata-setup-x86_64
container_name: metadata-setup
hostname: metadata-setup
read_only: true
security_opt:
- no-new-privileges:true
networks:
edgex-network:
aliases:
- metadata-setup
logging:
driver: "json-file"
options:
max-size: "10mb"
max-file: "20"
depends_on:
- core-metadata