-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
56 lines (52 loc) · 1.81 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
version: '3.7'
services:
# https://hub.docker.com/r/confluentinc/cp-kafka/
kafka:
container_name: kafka
image: confluentinc/cp-kafka:7.0.1
hostname: kafka
ports:
- 9092:9092
environment:
KAFKA_LISTENERS: PLAINTEXT://:29092,LISTENER_DOCKER_EXTERNAL://:9092
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092,LISTENER_DOCKER_EXTERNAL://localhost:9092
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,LISTENER_DOCKER_EXTERNAL:PLAINTEXT
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
KAFKA_ZOOKEEPER_CONNECT: "zookeeper:2181"
KAFKA_BROKER_ID: 1
KAFKA_NUM_PARTITIONS: 1
KAFKA_DEFAULT_REPLICATION_FACTOR: 1
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
CONFLUENT_SUPPORT_CUSTOMER_ID: 'anonymous'
# Whether or not to automatically create topics in case the topic does not exist
KAFKA_AUTO_CREATE_TOPICS_ENABLE: 'true'
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
depends_on:
- zookeeper
# Confluent Schema Registry Docker image see: https://hub.docker.com/r/confluentinc/cp-schema-registry
# Schema Registry: http://localhost:8081
schema-registry:
image: confluentinc/cp-schema-registry:7.0.1
container_name: schema-registry
hostname: schema-registry
restart: always
environment:
SCHEMA_REGISTRY_KAFKASTORE_BOOTSTRAP_SERVERS: "kafka:29092"
SCHEMA_REGISTRY_HOST_NAME: schema-registry
SCHEMA_REGISTRY_LISTENERS: "http://0.0.0.0:8081"
ports:
- 8081:8081
depends_on:
- zookeeper
# https://hub.docker.com/r/confluentinc/cp-zookeeper/
zookeeper:
image: confluentinc/cp-zookeeper:7.0.1
container_name: zookeeper
hostname: zookeeper
ports:
- 2181:2181
environment:
- ZOOKEEPER_CLIENT_PORT=2181
- TZ=${TZ}