Namespace
clickhouse
Image / Tag
clickhouse-server:22.10.3.27-alpine
Content Digest
sha256:9a537ce5095541bfbbd4a6c245bd95db792918927bcaea58867730d421ae9ea0
Details
Created

2022-11-23 11:27:10 UTC

Size

243 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/3531586971
  • com.clickhouse.build.githash
    6d3b29857247adcff5746384bfe6989536e0c2f6

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:c158987b05517b6f2c5913f3acef1f2182a32345a304fe357e3ace5fadcad715 - 1.32% (3.21 MB)

[#001] sha256:4025a6803a9c2766460b475b3da3941eeef60bf7914c639db59affecacea7b9a - 0.8% (1.93 MB)

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

[#003] sha256:a3229019ce53b81232176be4c929787031176f0af128d16f6ab5d1efb6a09829 - 0.0% (353 Bytes)

[#004] sha256:daa6a895e95578c98c2f5643d866b01e69d2ad0d38957a08dae67e2011b74fd9 - 0.0% (2.46 KB)

[#005] sha256:9c89e74d72c17c75296f0b91189674f3ba3782b4c527611492bfeb82f0c732ad - 0.0% (156 Bytes)

[#006] sha256:577abad53d5acacc204765e4e3a717466e21f045b1bc18e65d9dfc140d811d90 - 97.88% (238 MB)


History
2022-11-22 22:19:28 UTC

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

2022-11-22 22:19:29 UTC

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

2022-11-23 09:57:25 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

2022-11-23 09:57:25 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

2022-11-23 09:57:25 UTC (buildkit.dockerfile.v0)

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

2022-11-23 09:57:25 UTC (buildkit.dockerfile.v0)

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

2022-11-23 09:57:25 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2022-11-23 09:57:25 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2022-11-23 09:57:25 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

2022-11-23 09:57:25 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2022-11-23 09:57:25 UTC (buildkit.dockerfile.v0)

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

2022-11-23 09:57:25 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.9.3.18

2022-11-23 09:57:25 UTC (buildkit.dockerfile.v0)

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

2022-11-23 11:27:10 UTC (buildkit.dockerfile.v0)

RUN |5 TARGETARCH=amd64 REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/22.10/6d3b29857247adcff5746384bfe6989536e0c2f6/package_release VERSION=22.10.3.27 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

2022-11-23 11:27:10 UTC (buildkit.dockerfile.v0)

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

2022-11-23 11:27:10 UTC (buildkit.dockerfile.v0)

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

2022-11-23 11:27:10 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/entrypoint.sh"]

Details
Created

2022-11-23 11:28:35 UTC

Size

171 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/3531586971
  • com.clickhouse.build.githash
    6d3b29857247adcff5746384bfe6989536e0c2f6

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:261da4162673b93e5c0e7700a3718d40bcc086dbf24b1ec9b54bca0b82300626 - 1.82% (3.11 MB)

[#001] sha256:53dc63f3ced8c4eb0002bd9c321a4ecc75c5e90f933342943c8446bd83fc8744 - 0.74% (1.27 MB)

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

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

[#004] sha256:daa6a895e95578c98c2f5643d866b01e69d2ad0d38957a08dae67e2011b74fd9 - 0.0% (2.46 KB)

[#005] sha256:3479192e8e9d2f74dd50cfac8b2b8119577775fe342f4045c836ac9fb33fc661 - 0.0% (155 Bytes)

[#006] sha256:28f7c9e595cbb7a86ba7be2847b8025727200cd758356cdcd222c5b5c03d382b - 97.44% (167 MB)


History
2022-11-22 22:39:21 UTC

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

2022-11-22 22:39:21 UTC

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

2022-11-23 09:58:43 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

2022-11-23 09:58:43 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

2022-11-23 09:58:43 UTC (buildkit.dockerfile.v0)

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

2022-11-23 09:58:43 UTC (buildkit.dockerfile.v0)

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

2022-11-23 09:58:43 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2022-11-23 09:58:43 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2022-11-23 09:58:43 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

2022-11-23 09:58:43 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2022-11-23 09:58:43 UTC (buildkit.dockerfile.v0)

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

2022-11-23 09:58:43 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.9.3.18

2022-11-23 09:58:43 UTC (buildkit.dockerfile.v0)

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

2022-11-23 11:28:35 UTC (buildkit.dockerfile.v0)

RUN |5 TARGETARCH=arm64 REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/22.10/6d3b29857247adcff5746384bfe6989536e0c2f6/package_aarch64 VERSION=22.10.3.27 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

2022-11-23 11:28:35 UTC (buildkit.dockerfile.v0)

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

2022-11-23 11:28:35 UTC (buildkit.dockerfile.v0)

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

2022-11-23 11:28:35 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