diff --git a/README.md b/README.md index 5f5eb77..6a70e90 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,11 @@ A collection of delicious docker recipes. - [ ] tshark - [ ] youtube-upload +## Big Data + +- [x] kafka-manager +- [x] zookeeper-arm + ## IoT - [x] hass :+1: @@ -149,7 +154,6 @@ A collection of delicious docker recipes. - [x] grafana - [x] hugo - [x] hugo-arm -- [x] kafka-manager - [x] jamapi - [x] joomla - [x] json-server @@ -257,6 +261,7 @@ A collection of delicious docker recipes. - [ ] python - [x] gogs :cn: - [x] haproxy +- [x] wurstmeister/kafka - [x] nextcloud - [x] jazzdd/phpvirtualbox - [x] jenkins diff --git a/kafka/README.md b/kafka/README.md new file mode 100644 index 0000000..7503390 --- /dev/null +++ b/kafka/README.md @@ -0,0 +1,2 @@ +kafka +===== diff --git a/kafka/docker-compose.yml b/kafka/docker-compose.yml new file mode 100644 index 0000000..24c59dc --- /dev/null +++ b/kafka/docker-compose.yml @@ -0,0 +1,22 @@ +zookeeper: + image: zookeeper + ports: + - "2181:2181" + volumes: + - ./zookeeper/data:/data + - ./zookeeper/datalog:/datalog + restart: always + +kafka: + image: wurstmeister/kafka + ports: + - "9092:9092" + links: + - zookeeper + volumes: + - ./kafka:/kafka + - /var/run/docker.sock:/var/run/docker.sock + environment: + - KAFKA_ADVERTISED_HOST_NAME=10.50.254.182 + - KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181 + restart: always