Namespace
clickhouse
Image / Tag
clickhouse-server:23.2.6.34-alpine
Content Digest
sha256:bae15c91b097f345924abb2a7fadb1bb2ecf729bcd41117a06e522858315c90b
Details
Created

2023-04-23 22:02:59 UTC

Size

249 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/4780593775
  • com.clickhouse.build.githash
    570190045b05e95ae4638579099a297c28aa08e8

Environment
CLICKHOUSE_CONFIG

/etc/clickhouse-server/config.xml

LANG

en_US.UTF-8

LANGUAGE

en_US:en

LC_ALL

en_US.UTF-8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

TZ

UTC


Layers

[#000] sha256:f56be85fc22e46face30e2c3de3f7fe7c15f8fd7c4e5add29d7f64b87abdaa09 - 1.29% (3.22 MB)

[#001] sha256:a75be70543c06e0beba74e0125ee77a57151f3466a0ca8158a165bc0d57a3598 - 0.77% (1.93 MB)

[#002] sha256:10d741572daa920a5d1e43ca142275e188ff40c0125a0a8e4dd2fd6851ac4178 - 0.0% (390 Bytes)

[#003] sha256:b7fa90811b914fd75a5cfaaf5b5c2bc907b8f6e6ff9f33628cfcbb9d495bddca - 0.0% (351 Bytes)

[#004] sha256:6c68a90e70500a80136e8ae0f1bdf88edeefcb1c3fe7949cf859f81de80ebaa3 - 0.0% (2.69 KB)

[#005] sha256:1798941b95675036cb63e7907b56446988c8942b84fe6de79b9d3770ae800cda - 0.0% (157 Bytes)

[#006] sha256:d627d0d91b61a73a3688ac8559eafc1880236039d79a14447a3ce2c9ecfbc884 - 97.93% (244 MB)


History
2023-03-29 18:19:24 UTC

/bin/sh -c #(nop) ADD file:9a4f77dfaba7fd2aa78186e4ef0e7486ad55101cefc1fabbc1b385601bb38920 in /

2023-03-29 18:19:24 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2023-04-23 22:02:39 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8 TZ=UTC CLICKHOUSE_CONFIG=/etc/clickhouse-server/config.xml

2023-04-23 22:02:39 UTC (buildkit.dockerfile.v0)

COPY /lib/linux-gnu/libc.so.6 /lib/linux-gnu/libdl.so.2 /lib/linux-gnu/libm.so.6 /lib/linux-gnu/libpthread.so.0 /lib/linux-gnu/librt.so.1 /lib/linux-gnu/libnss_dns.so.2 /lib/linux-gnu/libnss_files.so.2 /lib/linux-gnu/libresolv.so.2 /lib/linux-gnu/ld-2.31.so /lib/ # buildkit

2023-04-23 22:02:39 UTC (buildkit.dockerfile.v0)

COPY /etc/nsswitch.conf /etc/ # buildkit

2023-04-23 22:02:39 UTC (buildkit.dockerfile.v0)

COPY docker_related_config.xml /etc/clickhouse-server/config.d/ # buildkit

2023-04-23 22:02:39 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2023-04-23 22:02:39 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-04-23 22:02:39 UTC (buildkit.dockerfile.v0)

RUN |1 TARGETARCH=amd64 /bin/sh -c arch=${TARGETARCH:-amd64} && case $arch in amd64) mkdir -p /lib64 && ln -sf /lib/ld-2.31.so /lib64/ld-linux-x86-64.so.2 ;; arm64) ln -sf /lib/ld-2.31.so /lib/ld-linux-aarch64.so.1 ;; esac # buildkit

2023-04-23 22:02:39 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2023-04-23 22:02:39 UTC (buildkit.dockerfile.v0)

ARG REPOSITORY=https://packages.clickhouse.com/tgz/stable

2023-04-23 22:02:39 UTC (buildkit.dockerfile.v0)

ARG VERSION=23.1.3.5

2023-04-23 22:02:39 UTC (buildkit.dockerfile.v0)

ARG PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static

2023-04-23 22:02:59 UTC (buildkit.dockerfile.v0)

RUN |5 TARGETARCH=amd64 REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/23.2/570190045b05e95ae4638579099a297c28aa08e8/package_release VERSION=23.2.6.34 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static /bin/sh -c arch=${TARGETARCH:-amd64} && for package in ${PACKAGES}; do { { echo "Get ${REPOSITORY}/${package}-${VERSION}-${arch}.tgz" && wget -c -q "${REPOSITORY}/${package}-${VERSION}-${arch}.tgz" -O "/tmp/${package}-${VERSION}-${arch}.tgz" && tar xvzf "/tmp/${package}-${VERSION}-${arch}.tgz" --strip-components=1 -C / ; } || { echo "Fallback to ${REPOSITORY}/${package}-${VERSION}.tgz" && wget -c -q "${REPOSITORY}/${package}-${VERSION}.tgz" -O "/tmp/${package}-${VERSION}.tgz" && tar xvzf "/tmp/${package}-${VERSION}.tgz" --strip-components=2 -C / ; } ; } || exit 1 ; done && rm /tmp/*.tgz /install -r && addgroup -S -g 101 clickhouse && adduser -S -h /var/lib/clickhouse -s /bin/bash -G clickhouse -g "ClickHouse server" -u 101 clickhouse && mkdir -p /var/lib/clickhouse /var/log/clickhouse-server /etc/clickhouse-server/config.d /etc/clickhouse-server/users.d /etc/clickhouse-client /docker-entrypoint-initdb.d && chown clickhouse:clickhouse /var/lib/clickhouse && chown root:clickhouse /var/log/clickhouse-server && chmod +x /entrypoint.sh && apk add --no-cache bash tzdata && cp /usr/share/zoneinfo/UTC /etc/localtime && echo "UTC" > /etc/timezone && chmod ugo+Xrw -R /var/lib/clickhouse /var/log/clickhouse-server /etc/clickhouse-server /etc/clickhouse-client # buildkit

2023-04-23 22:02:59 UTC (buildkit.dockerfile.v0)

EXPOSE map[8123/tcp:{} 9000/tcp:{} 9009/tcp:{}]

2023-04-23 22:02:59 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse /var/log/clickhouse-server]

2023-04-23 22:02:59 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/entrypoint.sh"]

Details
Created

2023-04-23 22:04:17 UTC

Size

176 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/4780593775
  • com.clickhouse.build.githash
    570190045b05e95ae4638579099a297c28aa08e8

Environment
CLICKHOUSE_CONFIG

/etc/clickhouse-server/config.xml

LANG

en_US.UTF-8

LANGUAGE

en_US:en

LC_ALL

en_US.UTF-8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

TZ

UTC


Layers

[#000] sha256:c41833b44d910632b415cd89a9cdaa4d62c9725dc56c99a7ddadafd6719960f9 - 1.77% (3.11 MB)

[#001] sha256:18cb72fb5c5b28749eb2084736c7cf691c39894345048fe61928e16d54a89c87 - 0.72% (1.27 MB)

[#002] sha256:d424bd7102130effaba02672efebd00ad19831f9837f5b65aae75340cc081615 - 0.0% (390 Bytes)

[#003] sha256:6dbc7d3b55ea83c28ee4ef212b501c1f1eadc5b91a143d60494f3e76998b8c4d - 0.0% (352 Bytes)

[#004] sha256:6c68a90e70500a80136e8ae0f1bdf88edeefcb1c3fe7949cf859f81de80ebaa3 - 0.0% (2.69 KB)

[#005] sha256:3f8a310ac05c0a1ebb1f208ee4e436264d00f8dc357311299be76d058138abc4 - 0.0% (156 Bytes)

[#006] sha256:b9eafa3173a38eec5718e7ac72ffec50402e0ee245167a07e739c6466fd722ca - 97.51% (172 MB)


History
2023-03-29 17:39:18 UTC

/bin/sh -c #(nop) ADD file:e51d4089e73ad6dee52b31f0c8059a00c17df6e23f6741fe11b43bd84cc99008 in /

2023-03-29 17:39:18 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2023-04-23 22:03:36 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8 TZ=UTC CLICKHOUSE_CONFIG=/etc/clickhouse-server/config.xml

2023-04-23 22:03:36 UTC (buildkit.dockerfile.v0)

COPY /lib/linux-gnu/libc.so.6 /lib/linux-gnu/libdl.so.2 /lib/linux-gnu/libm.so.6 /lib/linux-gnu/libpthread.so.0 /lib/linux-gnu/librt.so.1 /lib/linux-gnu/libnss_dns.so.2 /lib/linux-gnu/libnss_files.so.2 /lib/linux-gnu/libresolv.so.2 /lib/linux-gnu/ld-2.31.so /lib/ # buildkit

2023-04-23 22:03:36 UTC (buildkit.dockerfile.v0)

COPY /etc/nsswitch.conf /etc/ # buildkit

2023-04-23 22:03:36 UTC (buildkit.dockerfile.v0)

COPY docker_related_config.xml /etc/clickhouse-server/config.d/ # buildkit

2023-04-23 22:03:36 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2023-04-23 22:03:36 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-04-23 22:03:37 UTC (buildkit.dockerfile.v0)

RUN |1 TARGETARCH=arm64 /bin/sh -c arch=${TARGETARCH:-amd64} && case $arch in amd64) mkdir -p /lib64 && ln -sf /lib/ld-2.31.so /lib64/ld-linux-x86-64.so.2 ;; arm64) ln -sf /lib/ld-2.31.so /lib/ld-linux-aarch64.so.1 ;; esac # buildkit

2023-04-23 22:03:37 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2023-04-23 22:03:37 UTC (buildkit.dockerfile.v0)

ARG REPOSITORY=https://packages.clickhouse.com/tgz/stable

2023-04-23 22:03:37 UTC (buildkit.dockerfile.v0)

ARG VERSION=23.1.3.5

2023-04-23 22:03:37 UTC (buildkit.dockerfile.v0)

ARG PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static

2023-04-23 22:04:17 UTC (buildkit.dockerfile.v0)

RUN |5 TARGETARCH=arm64 REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/23.2/570190045b05e95ae4638579099a297c28aa08e8/package_aarch64 VERSION=23.2.6.34 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static /bin/sh -c arch=${TARGETARCH:-amd64} && for package in ${PACKAGES}; do { { echo "Get ${REPOSITORY}/${package}-${VERSION}-${arch}.tgz" && wget -c -q "${REPOSITORY}/${package}-${VERSION}-${arch}.tgz" -O "/tmp/${package}-${VERSION}-${arch}.tgz" && tar xvzf "/tmp/${package}-${VERSION}-${arch}.tgz" --strip-components=1 -C / ; } || { echo "Fallback to ${REPOSITORY}/${package}-${VERSION}.tgz" && wget -c -q "${REPOSITORY}/${package}-${VERSION}.tgz" -O "/tmp/${package}-${VERSION}.tgz" && tar xvzf "/tmp/${package}-${VERSION}.tgz" --strip-components=2 -C / ; } ; } || exit 1 ; done && rm /tmp/*.tgz /install -r && addgroup -S -g 101 clickhouse && adduser -S -h /var/lib/clickhouse -s /bin/bash -G clickhouse -g "ClickHouse server" -u 101 clickhouse && mkdir -p /var/lib/clickhouse /var/log/clickhouse-server /etc/clickhouse-server/config.d /etc/clickhouse-server/users.d /etc/clickhouse-client /docker-entrypoint-initdb.d && chown clickhouse:clickhouse /var/lib/clickhouse && chown root:clickhouse /var/log/clickhouse-server && chmod +x /entrypoint.sh && apk add --no-cache bash tzdata && cp /usr/share/zoneinfo/UTC /etc/localtime && echo "UTC" > /etc/timezone && chmod ugo+Xrw -R /var/lib/clickhouse /var/log/clickhouse-server /etc/clickhouse-server /etc/clickhouse-client # buildkit

2023-04-23 22:04:17 UTC (buildkit.dockerfile.v0)

EXPOSE map[8123/tcp:{} 9000/tcp:{} 9009/tcp:{}]

2023-04-23 22:04:17 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse /var/log/clickhouse-server]

2023-04-23 22:04:17 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/entrypoint.sh"]

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete