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:
parent
6f283b7a46
commit
fd860a3285
@ -254,6 +254,7 @@ A collection of delicious docker recipes.
|
||||
- [x] tutum/builder
|
||||
- [x] browserless/chrome
|
||||
- [x] certbot
|
||||
- [x] confluentinc/cp-kafka-rest
|
||||
- [x] streamsets/datacollector
|
||||
- [x] cachethq/docker
|
||||
- [x] puckel/docker-airflow
|
||||
|
9
kafka-rest/README.md
Normal file
9
kafka-rest/README.md
Normal 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
|
15
kafka-rest/docker-compose.yml
Normal file
15
kafka-rest/docker-compose.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user