-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
49 lines (46 loc) · 957 Bytes
/
docker-compose.yaml
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
---
version: "2.4"
services:
kafka-zoo1:
extends:
file: ae-services/kafka/kafka-zoo1.yaml
service: kafka-zoo1
kafka-zoo2:
extends:
file: ae-services/kafka/kafka-zoo2.yaml
service: kafka-zoo2
kafka-zoo3:
extends:
file: ae-services/kafka/kafka-zoo3.yaml
service: kafka-zoo3
kafka:
extends:
file: ae-services/kafka/kafka.yaml
service: kafka
depends_on:
- kafka-zoo1
- kafka-zoo2
- kafka-zoo3
kafka-ui:
extends:
file: ae-services/kafka/kafka-ui.yaml
service: kafka-ui
depends_on:
- kafka-zoo1
- kafka-zoo2
- kafka-zoo3
- kafka
postgres:
extends:
file: ae-services/postgres.yaml
service: postgres
ae-landfill:
extends:
file: ae-services/ae-landfill.yaml
service: ae-landfill
depends_on:
- kafka-zoo1
- kafka-zoo2
- kafka-zoo3
- kafka
- postgres