-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
101 lines (96 loc) · 2.32 KB
/
docker-compose.yml
File metadata and controls
101 lines (96 loc) · 2.32 KB
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
version: '2'
services:
kafka:
image: bitnami/kafka:latest
depends_on:
- zookeeper
ports:
- 9092:9092
- 29092:29092
environment:
KAFKA_BROKER_ID: 1
KAFKA_ADVERTISED_HOST_NAME: kafka:29092
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_LISTENERS: INTERNAL://0.0.0.0:29092,EXTERNAL://0.0.0.0:9092
KAFKA_ADVERTISED_LISTENERS: INTERNAL://kafka:29092,EXTERNAL://localhost:9092
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: INTERNAL:PLAINTEXT,EXTERNAL:PLAINTEXT
KAFKA_INTER_BROKER_LISTENER_NAME: INTERNAL
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
kafka-ui:
container_name: kafka-ui
image: provectuslabs/kafka-ui:latest
depends_on:
- kafka
ports:
- 9000:8080
environment:
KAFKA_CLUSTERS_0_NAME: local
KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS: kafka:29092
zookeeper:
image: zookeeper:latest
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
ports:
- 22181:2181
process:
build:
context: ./process
dockerfile: Dockerfile-process
ports:
- "8081:8081"
environment:
- PORT=8081
- ACCOUNT=account1
- CHECKPOINTER_HOST=checkpointer
- HOST=process
- FW_KAFKA_BOOTSTRAP_SERVERS=kafka:29092
depends_on:
- kafka
- checkpointer
restart: on-failure
process2:
build:
context: ./process
dockerfile: Dockerfile-process
ports:
- "8082:8082"
environment:
- PORT=8082
- ACCOUNT=account2
- CHECKPOINTER_HOST=checkpointer
- HOST=process2
- FW_KAFKA_BOOTSTRAP_SERVERS=kafka:29092
depends_on:
- kafka
- checkpointer
# restart: on-failure
redis:
image: redis:latest
command: redis-server --appendonly yes
volumes:
- redis-data:/data
ports:
- 6379:6379
redis-commander:
image: rediscommander/redis-commander:latest
environment:
- REDIS_HOSTS=local:redis:6379
ports:
- "8083:8081"
depends_on:
- redis
checkpointer:
build:
context: ./checkpointer
dockerfile: Dockerfile-checkpointer
ports:
- "8084:8084"
depends_on:
- redis
environment:
- REDIS_HOST=redis
- FW_KAFKA_BOOTSTRAP_SERVERS=kafka:29092
# restart: on-failure
volumes:
redis-data: