forked from edgexfoundry/blackbox-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
519 lines (489 loc) · 12.6 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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
# /*******************************************************************************
# * Copyright 2018 Dell Inc.
# *
# * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
# * in compliance with the License. You may obtain a copy of the License at
# *
# * http://www.apache.org/licenses/LICENSE-2.0
# *
# * Unless required by applicable law or agreed to in writing, software distributed under the License
# * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
# * or implied. See the License for the specific language governing permissions and limitations under
# * the License.
# *
# * @author: Jim White, Dell
# * EdgeX Foundry, Fuji, version 1.1.0
# * added: Jun 30, 2019
# *******************************************************************************/
version: '3.4'
# all common shared environment variables defined here:
x-common-env-variables: &common-variables
EDGEX_SECURITY_SECRET_STORE: ${SECURITY_IS_ON}
edgex_registry: consul://edgex-core-consul:8500
Clients_CoreData_Host: edgex-core-data
Clients_Logging_Host: edgex-support-logging
Logging_EnableRemote: "true"
volumes:
db-data:
log-data:
consul-config:
consul-data:
vault-config:
vault-file:
vault-logs:
secrets-setup-cache:
newman:
services:
volume:
image: ${volume}
container_name: edgex-files
networks:
- edgex-network
volumes:
- db-data:/data/db
- log-data:/edgex/logs
- consul-config:/consul/config
- consul-data:/consul/data
- newman:/etc/newman
consul:
image: ${consul}
ports:
- "8400:8400"
- "8500:8500"
container_name: edgex-core-consul
hostname: edgex-core-consul
networks:
edgex-network:
aliases:
- edgex-core-consul
volumes:
- db-data:/data/db
- log-data:/edgex/logs
- consul-config:/consul/config
- consul-data:/consul/data
depends_on:
- volume
config-seed:
image: ${configSeed}
container_name: edgex-config-seed
hostname: edgex-core-config-seed
networks:
edgex-network:
aliases:
- edgex-core-config-seed
environment:
<<: *common-variables
volumes:
- db-data:/data/db
- log-data:/edgex/logs
- consul-config:/consul/config
- consul-data:/consul/data
depends_on:
- volume
- consul
vault:
image: ${vault}
container_name: edgex-vault
hostname: edgex-vault
networks:
edgex-network:
aliases:
- edgex-vault
ports:
- "8200:8200"
cap_add:
- "IPC_LOCK"
environment:
- VAULT_ADDR=https://edgex-vault:8200
- VAULT_CONFIG_DIR=/vault/config
- VAULT_UI=true
command: >
/usr/bin/dumb-init -- /bin/sh -c
"exec /usr/local/bin/docker-entrypoint.sh server -log-level=info"
volumes:
- vault-file:/vault/file
- vault-logs:/vault/logs
- secrets-setup-cache:/etc/edgex/pki
- vault-config:/vault/config
depends_on:
- volume
- consul
vault-worker:
image: ${vaultWorker}
container_name: edgex-vault-worker
hostname: edgex-vault-worker
command: ["--init=true", "--vaultInterval=10", "--insecureSkipVerify=true"]
networks:
edgex-network:
aliases:
- edgex-vault-worker
volumes:
- vault-config:/vault/config
depends_on:
- volume
- consul
- vault
# containers for reverse proxy
kong-db:
image: ${kongdb}
container_name: kong-db
hostname: kong-db
networks:
edgex-network:
aliases:
- kong-db
ports:
- "5432:5432"
environment:
- 'POSTGRES_DB=kong'
- 'POSTGRES_USER=kong'
kong-migrations:
image: ${kong}
container_name: kong-migration
hostname: kong-migration
networks:
edgex-network:
aliases:
- kong-migration
environment:
- 'KONG_DATABASE=postgres'
- 'KONG_PG_HOST=kong-db'
command: "kong migrations bootstrap"
kong:
image: ${kong}
container_name: kong
hostname: kong
networks:
edgex-network:
aliases:
- kong
ports:
- "8000:8000"
- "8001:8001"
- "8443:8443"
- "8444:8444"
environment:
- 'KONG_DATABASE=postgres'
- 'KONG_PG_HOST=kong-db'
- 'KONG_PROXY_ACCESS_LOG=/dev/stdout'
- 'KONG_ADMIN_ACCESS_LOG=/dev/stdout'
- 'KONG_PROXY_ERROR_LOG=/dev/stderr'
- 'KONG_ADMIN_ERROR_LOG=/dev/stderr'
- 'KONG_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl'
depends_on:
- kong-db
tty: true
edgex-proxy:
image: ${edgexProxy}
container_name: edgex-proxy
hostname: edgex-proxy
command: ["--init=true", "--insecureSkipVerify=true"]
networks:
edgex-network:
aliases:
- edgex-proxy
volumes:
- vault-config:/vault/config
depends_on:
- vault
- kong-db
- kong
# end of containers for reverse proxy
mongo:
image: ${mongo}
ports:
- "27017:27017"
container_name: edgex-mongo
hostname: edgex-mongo
networks:
edgex-network:
aliases:
- edgex-mongo
environment:
<<: *common-variables
volumes:
- vault-config:/vault/config
- newman:/etc/newman
depends_on:
- volume
- vault-worker
logging:
image: ${supportLogging}
ports:
- "48061:48061"
container_name: edgex-support-logging
hostname: edgex-support-logging
networks:
edgex-network:
aliases:
- edgex-support-logging
environment:
<<: *common-variables
volumes:
- db-data:/data/db
- log-data:/edgex/logs
- consul-config:/consul/config
- consul-data:/consul/data
- vault-config:/vault/config
depends_on:
- config-seed
- mongo
- volume
notifications:
image: ${supportNotifications}
ports:
- "48060:48060"
container_name: edgex-support-notifications
hostname: edgex-support-notifications
networks:
edgex-network:
aliases:
- edgex-support-notifications
environment:
<<: *common-variables
volumes:
- db-data:/data/db
- log-data:/edgex/logs
- consul-config:/consul/config
- consul-data:/consul/data
- vault-config:/vault/config
depends_on:
- logging
metadata:
image: ${coreMetadata}
ports:
- "48081:48081"
container_name: edgex-core-metadata
hostname: edgex-core-metadata
networks:
edgex-network:
aliases:
- edgex-core-metadata
environment:
<<: *common-variables
volumes:
- db-data:/data/db
- log-data:/edgex/logs
- consul-config:/consul/config
- consul-data:/consul/data
- vault-config:/vault/config
depends_on:
- logging
data:
image: ${coreData}
ports:
- "48080:48080"
- "5563:5563"
container_name: edgex-core-data
hostname: edgex-core-data
networks:
edgex-network:
aliases:
- edgex-core-data
environment:
<<: *common-variables
volumes:
- db-data:/data/db
- log-data:/edgex/logs
- consul-config:/consul/config
- consul-data:/consul/data
- vault-config:/vault/config
depends_on:
- logging
command:
image: ${coreCommand}
ports:
- "48082:48082"
container_name: edgex-core-command
hostname: edgex-core-command
networks:
edgex-network:
aliases:
- edgex-core-command
environment:
<<: *common-variables
volumes:
- db-data:/data/db
- log-data:/edgex/logs
- consul-config:/consul/config
- consul-data:/consul/data
- vault-config:/vault/config
depends_on:
- metadata
scheduler:
image: ${supportScheduler}
ports:
- "48085:48085"
container_name: edgex-support-scheduler
hostname: edgex-support-scheduler
networks:
edgex-network:
aliases:
- edgex-support-scheduler
environment:
<<: *common-variables
volumes:
- db-data:/data/db
- log-data:/edgex/logs
- consul-config:/consul/config
- consul-data:/consul/data
- vault-config:/vault/config
depends_on:
- metadata
export-client:
image: ${exportClient}
ports:
- "48071:48071"
container_name: edgex-export-client
hostname: edgex-export-client
networks:
edgex-network:
aliases:
- edgex-export-client
environment:
<<: *common-variables
volumes:
- db-data:/data/db
- log-data:/edgex/logs
- consul-config:/consul/config
- consul-data:/consul/data
- vault-config:/vault/config
depends_on:
- data
export-distro:
image: ${exportDistro}
ports:
- "48070:48070"
- "5566:5566"
container_name: edgex-export-distro
hostname: edgex-export-distro
networks:
edgex-network:
aliases:
- edgex-export-distro
volumes:
- db-data:/data/db
- log-data:/edgex/logs
- consul-config:/consul/config
- consul-data:/consul/data
depends_on:
- export-client
environment:
EXPORT_DISTRO_CLIENT_HOST: export-client
EXPORT_DISTRO_DATA_HOST: edgex-core-data
EXPORT_DISTRO_CONSUL_HOST: edgex-config-seed
EXPORT_DISTRO_MQTTS_CERT_FILE: none
EXPORT_DISTRO_MQTTS_KEY_FILE: none
<<: *common-variables
app-service-rules:
image: ${appService}
ports:
- "48100:48100"
container_name: edgex-app-service-configurable-rules
hostname: edgex-app-service-configurable-rules
networks:
edgex-network:
aliases:
- edgex-app-service-configurable-rules
environment:
<<: *common-variables
edgex_service: http://edgex-app-service-configurable-rules:48100
edgex_profile: rules-engine
Service_Host: edgex-app-service-configurable-rules
MessageBus_SubscribeHost_Host: edgex-core-data
depends_on:
- consul
- logging
- data
rulesengine:
image: ${supportRulesengine}
ports:
- "48075:48075"
container_name: edgex-support-rulesengine
hostname: edgex-support-rulesengine
networks:
edgex-network:
aliases:
- edgex-support-rulesengine
volumes:
- db-data:/data/db
- log-data:/edgex/logs
- consul-config:/consul/config
- consul-data:/consul/data
- vault-config:/vault/config
depends_on:
- export-client
system:
image: ${systemManagement}
ports:
- "48090:48090"
container_name: edgex-sys-mgmt-agent
hostname: edgex-sys-mgmt-agent
networks:
- edgex-network
environment:
<<: *common-variables
volumes:
- db-data:/data/db
- log-data:/edgex/logs
- consul-config:/consul/config
- consul-data:/consul/data
# The following directive is to enable communication with the SMA Docker-in-Docker image (SystemManagement-Only.)
- /var/run/docker.sock:/var/run/docker.sock
depends_on:
- logging
#################################################################
# Application Services
#################################################################
app-service-configurable:
image: ${appService}
ports:
- "48095:48095"
container_name: edgex-app-service-configurable
hostname: app-service-configurable
environment:
edgex_registry: consul://edgex-core-consul:8500
edgex_service: http://app-service-configurable:48095
edgex_profile: blackbox-tests
Service_Host: app-service-configurable
Clients_CoreData_Host: edgex-core-data
Clients_Logging_Host: edgex-support-logging
Logging_EnableRemote: "true"
MessageBus_SubscribeHost_Host: edgex-core-data
Database_Host: edgex-mongo
Database_Username: appservice
Database_Password: password
networks:
edgex-network:
aliases:
- edgex-app-service-configurable
#################################################################
# Device Services
#################################################################
device-virtual:
image: ${deviceVirtual}
ports:
- "49990:49990"
container_name: edgex-device-virtual
hostname: edgex-device-virtual
networks:
edgex-network:
aliases:
- edgex-device-virtual
volumes:
- db-data:/data/db
- log-data:/edgex/logs
- consul-config:/consul/config
- consul-data:/consul/data
depends_on:
- data
- command
postman:
image: ${postman}
networks:
- edgex-network
volumes:
- newman:/etc/newman
networks:
edgex-network:
driver: "bridge"