restart:unless-stopped kafka: build:. ports: -"9092" environment: DOCKER_API_VERSION:1.22 KAFKA_ADVERTISED_HOST_NAME:192.168.99.100 KAFKA_ZOOKEEPER_CONNECT:zookeeper:2181 volumes: -/var/run/docker.sock:/var/run/docker.sock restart:unless-stopped
Add a description, image, and links to the kafka-docker-compose topic page so that developers can more easily learn about it. Curate this topic Add this topic to your repo To associate your repository with the kafka-docker-compose topic, visit your repo's landing page and select "manag...
docker-compose-single-broker.yml use docker-compose version 2 format 9年前 docker-compose-swarm.yml docker-compose-swarm.yml has the wrong container name for kafka (#308) 7年前 docker-compose.yml use docker-compose version 2 format 9年前 docker_push Build docker images from ...
Repository files navigation README Kafka 1、创建网络 docker network create kafka 2、启动 docker-compose up -d 3、访问测试 telnet localhost 2101 telnet localhost 9092About No description, website, or topics provided. Resources Readme Activity Stars 0 stars Watchers 2 watching Forks 0 forks...
Zookeeper will be available at $DOCKER_HOST_IP:2181 Kafka will be available at $DOCKER_HOST_IP:9092 (experimental) JMX port at $DOCKER_HOST_IP:9999 Run with: docker-compose -f zk-single-kafka-single.yml up docker-compose -f zk-single-kafka-single.yml down Single Zookeeper / Multiple ...
Kafka will be available at $DOCKER_HOST_IP:9092 (experimental) JMX port at $DOCKER_HOST_IP:9999 Run with: docker-compose -f zk-single-kafka-single.yml up docker-compose -f zk-single-kafka-single.yml down Single Zookeeper / Multiple Kafka If you want to have three brokers and experiment...
Added kafka to docker-compose.yaml and corrected the health check for mongo. Reduced the number of default workers in the config to make it easier to test the software on any hardware. Provide an example of script of how one can read from the kafka topics. ...
kafka-docker/docker-compose.yml Go to file Copy path Cannot retrieve contributors at this time 15 lines (15 sloc)324 Bytes RawBlame version:'2' services: zookeeper: image:wurstmeister/zookeeper ports: -"2181:2181" kafka: build:. ports: ...
Docker Compose There is a docker-compose.yaml file that bundles a Kafka/ZooKeeper instance with Kafdrop: cd docker-compose/kafka-kafdrop docker-compose up APIs JSON endpoints Starting with version 2.0.0, Kafdrop offers a set of Kafka APIs that mirror the existing HTML views. Any existing endpoin...
kafka-node/docker-compose.yml Go to file Copy path 27 lines (27 sloc)1.02 KB RawBlame version:'2' services: zookeeper: image:jplock/zookeeper ports: -"2181:2181" kafka: image:wurstmeister/kafka:0.9.0.1 ports: -"9092:9092" -"9093:9093" ...