Kafka and Zookeeper on Docker Compose

If you want to run Docker Compose with Kafka and Zookeeper, you could use the following code:

version: '3.3'
services:
  zookeeper:
    image: wurstmeister/zookeeper
    ports:
      - "2181:2181"

  kafka:
    image: wurstmeister/kafka
    ports:
      - "9092:9092"
    environment:
      KAFKA_ADVERTISED_HOST_NAME: localhost
      KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock

Be First to Comment

Leave a Reply

Your email address will not be published. Required fields are marked *