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

Default ports for Kafka and Zookepeer must be avoided #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions kafka-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
"bin/zookeeper-server-start.sh config/zookeeper.properties"
]
ports:
- "2181:2181"
- "2081:2081"
environment:
LOG_DIR: /tmp/logs

Expand All @@ -22,9 +22,9 @@ services:
depends_on:
- zookeeper
ports:
- "9092:9092"
- "9002:9002"
environment:
LOG_DIR: "/tmp/logs"
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://localhost:9092
KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9092
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://localhost:9002
KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9002
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2081