This is an automated email from the ASF dual-hosted git repository.

xiangfu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new a5846636fa update docker compose file (#15583)
a5846636fa is described below

commit a5846636fa07b0b23a6ce3c7508e445c187a8abf
Author: Xiang Fu <xiangfu.1...@gmail.com>
AuthorDate: Thu Apr 24 01:39:47 2025 -0700

    update docker compose file (#15583)
---
 docker/images/pinot/docker-compose.yml | 21 +++++++++++++++++----
 1 file changed, 17 insertions(+), 4 deletions(-)

diff --git a/docker/images/pinot/docker-compose.yml 
b/docker/images/pinot/docker-compose.yml
index cd7361c0ce..d86db11e0f 100644
--- a/docker/images/pinot/docker-compose.yml
+++ b/docker/images/pinot/docker-compose.yml
@@ -32,7 +32,7 @@ services:
       - ./pinot-docker-demo/zookeeper/data:/data
       - ./pinot-docker-demo/zookeeper/datalog:/datalog
   kafka:
-    image: confluentinc/cp-kafka:5.3.0
+    image: confluentinc/cp-kafka:latest
     hostname: kafka
     ports:
       - "9092:9092"
@@ -49,7 +49,7 @@ services:
     depends_on:
       - zookeeper
   pinot-controller:
-    image: apachepinot/pinot:release-0.7.1
+    image: apachepinot/pinot:latest
     hostname: pinot-controller
     volumes:
       - ./pinot-docker-demo/pinot/controller:/tmp/data/controller
@@ -57,9 +57,10 @@ services:
       - "9000:9000"
     command: StartController -zkAddress zookeeper:2181
     depends_on:
+      - zookeeper
       - kafka
   pinot-broker:
-    image: apachepinot/pinot:release-0.7.1
+    image: apachepinot/pinot:latest
     hostname: pinot-broker
     ports:
       - "8099:8099"
@@ -69,7 +70,7 @@ services:
       - kafka
       - pinot-controller
   pinot-server:
-    image: apachepinot/pinot:release-0.7.1
+    image: apachepinot/pinot:latest
     hostname: pinot-server
     volumes:
       - ./pinot-docker-demo/pinot/server:/tmp/data/server
@@ -80,3 +81,15 @@ services:
       - zookeeper
       - kafka
       - pinot-controller
+  pinot-minion:
+    image: apachepinot/pinot:latest
+    hostname: pinot-minion
+    volumes:
+      - ./pinot-docker-demo/pinot/minion:/tmp/data/minion
+    ports:
+      - "9514:9514"
+    command: StartMinion -zkAddress zookeeper:2181
+    depends_on:
+      - zookeeper
+      - kafka
+      - pinot-controller


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to