-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
61 lines (59 loc) · 1.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
version: "2"
services:
zookeeper:
image: docker.io/bitnami/zookeeper:latest
ports:
- "2181:2181"
volumes:
- "zookeeper_data:/bitnami"
environment:
- ALLOW_ANONYMOUS_LOGIN=yes
kafka:
image: docker.io/bitnami/kafka:latest
ports:
- "9092:9092"
volumes:
- "kafka_data:/bitnami"
environment:
- KAFKA_CFG_ZOOKEEPER_CONNECT=zookeeper:2181
- KAFKA_CFG_LISTENERS=PLAINTEXT://:9092
- KAFKA_CFG_ADVERTISED_LISTENERS=PLAINTEXT://127.0.0.1:9092
- ALLOW_PLAINTEXT_LISTENER=yes
- KAFKA_BROKER_ID=1
depends_on:
- zookeeper
redis:
image: docker.io/bitnami/redis:latest
environment:
- ALLOW_EMPTY_PASSWORD=yes # ALLOW_EMPTY_PASSWORD is recommended only for development.
- REDIS_EXTRA_FLAGS=--loglevel debug
ports:
- '6379:6379'
volumes:
- 'redis_data:/bitnami/redis/data'
cmak:
image: ghcr.io/eshepelyuk/dckr/cmak-3.0.0.5:latest
restart: always
ports:
- "9000:9000"
depends_on:
- zookeeper
environment:
ZK_HOSTS: "zookeeper:2181"
cmak2zk:
image: ghcr.io/eshepelyuk/dckr/cmak2zk:latest
restart: on-failure
command:
- 'zookeeper:2181'
- '/app/etc/clusters.yaml'
depends_on:
- zookeeper
volumes:
- ./clusters.yaml:/app/etc/clusters.yaml:ro"
volumes:
zookeeper_data:
driver: local
kafka_data:
driver: local
redis_data:
driver: local