Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

jamie/kafka calls #389

Merged
merged 14 commits into from
Jan 31, 2022
6 changes: 4 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,17 @@ services:
ports:
- "2181:2181"
kafka:
image: wurstmeister/kafka:${KAFKA_VERSION:-2.12-2.2.2}
image: wurstmeister/kafka:${KAFKA_VERSION:-2.13-2.8.1}
ports:
- "9092"
- "9093"
depends_on:
- ssl_setup
- zookeeper
environment:
KAFKA_LISTENERS: SASL_SSL://:9093
HOSTNAME_COMMAND: hostname
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://_{HOSTNAME_COMMAND}:9092,SASL_SSL://_{HOSTNAME_COMMAND}:9093
KAFKA_LISTENERS: PLAINTEXT://:9092,SASL_SSL://:9093
KAFKA_PORT: 9093
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_CREATE_TOPICS: "test1:1:3,test2:2:2"
Expand Down
Loading