[Pinot Git URL]
on branch [Git Branch]
and build the docker image for that.[Docker Tag]
.Docker Tag
: Name and tag your docker image. Default is pinot:latest
.Git Branch
: The Pinot branch to build. Default is master
.Pinot Git URL
: The Pinot Git Repo to build, users can set it to their own fork. Please note that, the URL is https://
based, not git://
. Default is the Apache Repo: https://github.com/apache/pinot.git
.Kafka Version
: The Kafka Version to build pinot with. Default is 2.0
Java Version
: The Java Build and Runtime image version. Default is 11
JDK Version
: The JDK parameter to build pinot, set as part of maven build option: -Djdk.version=${JDK_VERSION}
. Default is 11
OpenJDK Image
: Base image to use for Pinot build and runtime. Default is openjdk
.arm64v8/openjdk
--platform linux/arm64
into the docker build ...
script, e.g.docker-push.sh
publishes a given docker image to your docker registry.docker-build-and-push.sh
builds and publishes this docker image to your docker registry after build.[Presto Git URL]
on branch [Git Branch]
and build the docker image for that.[Docker Tag]
.Docker Tag
: Name and tag your docker image. Default is pinot-presto:latest
.Git Branch
: The Presto branch to build. Default is master
.Presto Git URL
: The Presto Git Repo to build, users can set it to their own fork. Please note that, the URL is https://
based, not git://
. Default is the Apache Repo: https://github.com/prestodb/presto.git
.etc
directory./home/presto/etc
, which contains all the configuration and plugins./home/presto/data
.Makefile
to change image
and superset_version
accordingly.superset_version
and latest
.docker build
command by setting arguments:/etc/superset
inside the container. This location is included in the image's PYTHONPATH
. Mounting this file to a different location is possible, but it will need to be in the PYTHONPATH
./etc/superset
or /home/superset
; either is acceptable. Both of these directories are included in the PYTHONPATH
of the image. Mount any configuration (specifically the superset_config.py
file) here to have it read by the app on startup./var/lib/superset
and it is where you would mount your SQLite file (if you are using that as your backend), or a volume to collect any logs that are routed there. This location is used as the value of the SUPERSET_HOME
environmental variable.