diff --git a/clone.sh b/clone.sh new file mode 100644 index 0000000..971d1b4 --- /dev/null +++ b/clone.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +# Clone the repository +git clone https://github.com/startreedata/pinot-quickstart + +# Extract the directory name and change to that directory +repo_name=$(basename https://github.com/startreedata/pinot-quickstart .git) +cd $repo_name + +# Run the make command +make \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index 733c8cf..d955c4c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,3 @@ -version: "3.8" - services: producer: build: @@ -88,7 +86,7 @@ services: kafka: image: docker.io/bitnami/kafka:3.6 hostname: kafka - container_name: kafka + container_name: quickstart-pinot-kafka ports: - "9092:9092" - "29092:29092"