Docker image for Metabase with Clickhouse driver, based on the official Metabase image and https://hub.docker.com/r/bjeanes/metabase-clickhouse
# build stage
ARG TAG=v0.53.x
FROM badouralix/curl-jq AS build
WORKDIR /tmp
RUN wget "$(curl -s https://api.github.com/repos/ClickHouse/metabase-clickhouse-driver/releases | jq -r .[0].assets[].browser_download_url)"
# final stage
FROM metabase/metabase:$TAG
ARG TAG
COPY --from=build /tmp/clickhouse.metabase-driver.jar /plugins/
RUN chmod 744 /plugins/clickhouse.metabase-driver.jar
by running:
$ docker build --build-arg TAG=v0.53.x -t andreaskluth/metabase-clickhouse:v0.53.x .
$ docker push andreaskluth/metabase-clickhouse:v0.53.x
Content type
Image
Digest
sha256:645d121ba…
Size
640.4 MB
Last updated
about 1 year ago
docker pull andreaskluth/metabase-clickhouse:v0.56.6.4