1 Star 0 Fork 3

Aaron/KSQL

forked from Gitee 极速下载/KSQL 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
up 448 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
# exit when any command fails
set -e
echo -e "## Bringing up containers:\n"
docker-compose up -d
echo -e "\n## Waiting for ksqlDB to start:"
until curl -s --fail -X "POST" "http://localhost:8088/ksql" \
-H "Content-Type: application/json; charset=utf-8" \
-d '{"ksql":"SHOW STREAMS;"}'
do
sleep 5
echo -n "."
done
echo -e "\n## Starting ksqlDB CLI:\n"
docker exec -it ksqldb-cli ksql http://primary-ksqldb-server:8088
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/Aaron_Young/KSQL.git
git@gitee.com:Aaron_Young/KSQL.git
Aaron_Young
KSQL
KSQL
master

搜索帮助