Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/compose/kafka-protobuf-cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version: '2'
services:
zookeeper:
image: confluentinc/cp-zookeeper:5.5.1
image: confluentinc/cp-zookeeper:7.8.2
hostname: zookeeper
container_name: zookeeper
ports:
Expand All @@ -12,7 +12,7 @@ services:
ZOOKEEPER_TICK_TIME: 2000

broker:
image: confluentinc/cp-server:5.5.1
image: confluentinc/cp-server:7.8.2
hostname: broker
container_name: broker
depends_on:
Expand Down
8 changes: 4 additions & 4 deletions docker/compose/kafka-schema-registry-m3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
version: '3'
services:
zookeeper:
image: confluentinc/cp-zookeeper:5.5.1
image: confluentinc/cp-zookeeper:7.8.2
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000

kafka:
image: confluentinc/cp-kafka:5.5.1
image: confluentinc/cp-kafka:7.8.2
depends_on:
- zookeeper
ports:
Expand All @@ -22,7 +22,7 @@ services:
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1

schema-registry:
image: confluentinc/cp-schema-registry:5.5.1
image: confluentinc/cp-schema-registry:7.8.2
depends_on:
- kafka
- zookeeper
Expand All @@ -34,7 +34,7 @@ services:
- "8081:8081"

rest-proxy:
image: confluentinc/cp-kafka-rest:5.5.1
image: confluentinc/cp-kafka-rest:7.8.2
depends_on:
- zookeeper
- kafka
Expand Down
22 changes: 22 additions & 0 deletions docker/compose/kafka-simple.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
version: '3'
services:
zookeeper:
image: confluentinc/cp-zookeeper:7.8.2
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000

kafka:
image: confluentinc/cp-kafka:7.8.2
depends_on:
- zookeeper
ports:
- 9092:9092
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092,PLAINTEXT_HOST://localhost:9092
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1