Sign inSign up

binhnv/kafka

By binhnv

•Updated over 7 years ago

A Docker image for Kafka

Image
0

1.7K

binhnv/kafka repository overview

⁠docker-kafka

Docker image of Apache Kafka

This is docker image of Apache Kafka. This image does not work alone. It depends on an external ZooKeeper service and you need to tell it how to connect to ZooKeeper by mounting your own server.properties template or set KAFKA_ZOOKEEPER_CONNECT environment variable to the correct value

Here is an example of docker-compose file

version: "3"
services:
  zookeeper:
    image: zookeeper:3.4.9
    restart: always
  
  kafka:
    image: binhnv/kafka:2.10-0.8
    environment:
      KAFKA_ZOOKEEPER_CONNECT: "zookeeper:2181/kafka"

Tag summary

Content type

Image

Digest

Size

265.9 MB

Last updated

over 7 years ago

docker pull binhnv/kafka