1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00

add kafka-rest

This commit is contained in:
kev 2019-05-01 08:54:06 +08:00
parent 6f283b7a46
commit fd860a3285
3 changed files with 25 additions and 0 deletions

View File

@ -254,6 +254,7 @@ A collection of delicious docker recipes.
- [x] tutum/builder - [x] tutum/builder
- [x] browserless/chrome - [x] browserless/chrome
- [x] certbot - [x] certbot
- [x] confluentinc/cp-kafka-rest
- [x] streamsets/datacollector - [x] streamsets/datacollector
- [x] cachethq/docker - [x] cachethq/docker
- [x] puckel/docker-airflow - [x] puckel/docker-airflow

9
kafka-rest/README.md Normal file
View File

@ -0,0 +1,9 @@
kafka-rest
==========
[The Confluent REST Proxy][1] provides a RESTful interface to a Kafka cluster,
making it easy to produce and consume messages, view the state of the cluster,
and perform administrative actions without using the native Kafka protocol or
clients.
[1]: https://github.com/confluentinc/kafka-rest

View File

@ -0,0 +1,15 @@
kafka-rest:
image: confluentinc/cp-kafka-rest
ports:
- "8082:8082"
environment:
- KAFKA_REST_ZOOKEEPER_CONNECT=zookeeper1:2181,zookeeper2:2181,zookeeper3:2181
- KAFKA_REST_BOOTSTRAP_SERVERS=kafka1:9092,kafka2:9092,kafka3:9092
extra_hosts:
- zookeeper1:10.0.0.21
- zookeeper2:10.0.0.22
- zookeeper3:10.0.0.23
- kafka1:10.0.0.21
- kafka2:10.0.0.22
- kafka3:10.0.0.23
restart: unless-stopped