Implement Apache Druid/Kafka and Metabase

This commit is contained in:
2022-09-13 22:17:32 +01:00
parent 79a430be04
commit 3c2adfc16e
4 changed files with 33 additions and 1 deletions

View File

@@ -45,6 +45,20 @@ services:
- tmp
- redis
turnilo:
container_name: turnilo
image: uchhatre/turnilo:latest
ports:
- 9093:9090
environment:
- DRUID_BROKER_URL=http://broker:8082
metabase:
container_name: metabase
image: metabase/metabase:latest
ports:
- 3001:3000
postgres:
container_name: postgres
image: postgres:latest
@@ -64,6 +78,22 @@ services:
environment:
- ZOO_MY_ID=1
kafka:
image: bitnami/kafka
depends_on:
- zookeeper
ports:
- 29092:29092
- 9092:9092
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092
#KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
ALLOW_PLAINTEXT_LISTENER: yes
coordinator:
image: apache/druid:0.23.0
container_name: coordinator