-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathdocker-compose.yaml
60 lines (59 loc) · 1.6 KB
/
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
50
51
52
53
54
55
56
57
58
59
version: '3'
services:
faust-project:
tty: true
build: ./faust-project
command: ./run.sh
depends_on:
- zookeeper
- kafka
- schema-registry
environment:
- WORKER=example
- WORKER_PORT=6066
- KAFKA_BOOTSTRAP_SERVER=kafka://kafka:9092
- KAFKA_BOOSTRAP_SERVER_NAME=kafka
- KAFKA_BOOSTRAP_SERVER_PORT=9092
- SCHEMA_REGISTRY_URL=http://schema-registry:8081
- SCHEMA_REGISTRY_SERVER=schema-registry
- SCHEMA_REGISTRY_SERVER_PORT=8081
ports:
- "8084:80"
- "8000:8000"
volumes:
- ./scripts:/faust-project/scripts
zookeeper:
image: "confluentinc/cp-zookeeper"
hostname: zookeeper
ports:
- 32181:32181
environment:
- ZOOKEEPER_CLIENT_PORT=32181
kafka:
image: confluentinc/cp-kafka
hostname: kafka
container_name: kafka
ports:
- 9092:9092
- 29092:29092
depends_on:
- zookeeper
environment:
- KAFKA_ZOOKEEPER_CONNECT=zookeeper:32181
- KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR=1
- KAFKA_LISTENER_SECURITY_PROTOCOL_MAP=PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
- KAFKA_ADVERTISED_LISTENERS=PLAINTEXT_HOST://localhost:29092,PLAINTEXT://kafka:9092
- KAFKA_BROKER_ID=1
schema-registry:
image: confluentinc/cp-schema-registry
hostname: schema-registry
container_name: schema-registry
depends_on:
- kafka
- zookeeper
ports:
- "8081:8081"
environment:
- SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL=zookeeper:32181
- SCHEMA_REGISTRY_HOST_NAME=schema-registry
- SCHEMA_REGISTRY_DEBUG=true