Skip to content

Commit

Permalink
add ksqldb to full stack
Browse files Browse the repository at this point in the history
  • Loading branch information
fhussonnois committed Nov 9, 2020
1 parent 6703f5d commit 71afb6e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ toc::[]
* Kafka (Confluent)
* Zookeeper
* Kafka Schema Registry (Confluent)
* KSQLDB
* Prometheus
* Grafana
* AKHQ (https://akhq.io/)
Expand Down
17 changes: 17 additions & 0 deletions zk-kafka-single-node-full-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,23 @@ services:
- zk1
- kafka101

ksqldb-server:
image: confluentinc/cp-ksqldb-server:latest
hostname: ksqldb-server
ports:
- "8088:8088"
environment:
KSQL_BOOTSTRAP_SERVERS: PLAINTEXT://kafka101:29092
KSQL_LISTENERS: http://0.0.0.0:8088/
KSQL_KSQL_SCHEMA_REGISTRY_URL: http://kafka-schema-registry:8081
KSQL_KSQL_EXTENSION_DIR: /var/lib/ksql/extension
KSQL_KSQL_SERVICE_ID: ksqldb-server_
depends_on:
- zk1
- kafka101
# volumes:
# - ./ksql-custom-udfs/:/var/lib/ksql/extension/

zoonavigator:
image: elkozmon/zoonavigator:0.8.0
container_name: zoonavigator
Expand Down

0 comments on commit 71afb6e

Please sign in to comment.