Skip to content

Commit

Permalink
Use a newer kafka version default for docker-compose
Browse files Browse the repository at this point in the history
7.5.1 would match open source kafka 3.5.1
  • Loading branch information
scanterog committed Oct 31, 2023
1 parent be26f99 commit 38ec141
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3'

services:
kafka:
image: confluentinc/cp-kafka:${CONFLUENT_VERSION:-5.3.1}
image: confluentinc/cp-kafka:${CONFLUENT_VERSION:-7.5.1}
environment:
- KAFKA_BROKER_ID=0
- KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181
Expand All @@ -16,7 +16,7 @@ services:
links: [zookeeper]

zookeeper:
image: confluentinc/cp-zookeeper:${CONFLUENT_VERSION:-5.3.1}
image: confluentinc/cp-zookeeper:${CONFLUENT_VERSION:-7.5.1}
environment:
- ZOOKEEPER_CLIENT_PORT=2181
ports: ["2181:2181"]

0 comments on commit 38ec141

Please sign in to comment.