Skip to content

Commit

Permalink
helper script for cloning (quick install) (#6)
Browse files Browse the repository at this point in the history
* added clone helper script

* rename container for kafka so it wont conflict
  • Loading branch information
gAmUssA authored Jul 25, 2024
1 parent fb1db99 commit d19ff74
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
11 changes: 11 additions & 0 deletions clone.sh
Original file line number Diff line number Diff line change
@@ -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
4 changes: 1 addition & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3.8"

services:
producer:
build:
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit d19ff74

Please sign in to comment.