Namespace
clickhouse
Image / Tag
clickhouse-server:22.10.7-alpine
Content Digest
sha256:531ac1a12b7a7d5f6883929e35afb68dc36c845d54a15d20445c33d290d1c79f
Details
Created

2023-01-25 23:27:15 UTC

Size

243 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/4010818052
  • com.clickhouse.build.githash
    d261d9036cc5cb4461315ed299108f76991cf822

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

[#001] sha256:ad5d853b03d0dc44186e9592f7ebfd40d57f39ee441ab02db779415f8fe55776 - 0.79% (1.93 MB)

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

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

[#004] sha256:f5d8d21a0425fb61ad9faf2683f9f474690e3ffddd1d90649c80627a056bbb96 - 0.0% (2.45 KB)

[#005] sha256:9d5567c4f4af4f3c174550383b1db0bdda1d5983f65e75d7c898ec0d1cc8ad8e - 0.0% (157 Bytes)

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


History
2023-01-09 17:05:20 UTC

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

2023-01-09 17:05:20 UTC

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

2023-01-25 14:42:41 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-01-25 14:42:41 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-01-25 14:42:41 UTC (buildkit.dockerfile.v0)

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

2023-01-25 14:42:41 UTC (buildkit.dockerfile.v0)

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

2023-01-25 23:26:54 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2023-01-25 23:26:54 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-01-25 23:26:54 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-01-25 23:26:54 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2023-01-25 23:26:54 UTC (buildkit.dockerfile.v0)

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

2023-01-25 23:26:54 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.9.3.18

2023-01-25 23:26:54 UTC (buildkit.dockerfile.v0)

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

2023-01-25 23:27:15 UTC (buildkit.dockerfile.v0)

RUN |5 TARGETARCH=amd64 REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/22.10/d261d9036cc5cb4461315ed299108f76991cf822/package_release VERSION=22.10.7.13 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-01-25 23:27:15 UTC (buildkit.dockerfile.v0)

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

2023-01-25 23:27:15 UTC (buildkit.dockerfile.v0)

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

2023-01-25 23:27:15 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/entrypoint.sh"]

Details
Created

2023-01-25 23:28:27 UTC

Size

171 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/4010818052
  • com.clickhouse.build.githash
    d261d9036cc5cb4461315ed299108f76991cf822

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:a9eaa45ef418e883481a13c7d84fa9904f2ec56789c52a87ba5a9e6483f2b74f - 1.81% (3.11 MB)

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

[#002] sha256:14530b7761b86656a512414963ba67c68b051e477442d1eb8d954121b6c1f71e - 0.0% (389 Bytes)

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

[#004] sha256:f5d8d21a0425fb61ad9faf2683f9f474690e3ffddd1d90649c80627a056bbb96 - 0.0% (2.45 KB)

[#005] sha256:1cb15a96cba44a66e40c5a2ad83a81f9508ac9b444437fd3ae92ee820c422434 - 0.0% (156 Bytes)

[#006] sha256:5550e49f398a59fd06f6d6cb6a5c65fba8f2b8aabe122b30e5e859c01765828c - 97.44% (167 MB)


History
2023-01-09 17:04:48 UTC

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

2023-01-09 17:04:49 UTC

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

2023-01-25 14:43:53 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-01-25 14:43:53 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-01-25 14:43:53 UTC (buildkit.dockerfile.v0)

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

2023-01-25 14:43:53 UTC (buildkit.dockerfile.v0)

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

2023-01-25 23:27:49 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2023-01-25 23:27:49 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-01-25 23:27:49 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-01-25 23:27:49 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2023-01-25 23:27:49 UTC (buildkit.dockerfile.v0)

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

2023-01-25 23:27:49 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.9.3.18

2023-01-25 23:27:49 UTC (buildkit.dockerfile.v0)

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

2023-01-25 23:28:27 UTC (buildkit.dockerfile.v0)

RUN |5 TARGETARCH=arm64 REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/22.10/d261d9036cc5cb4461315ed299108f76991cf822/package_aarch64 VERSION=22.10.7.13 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-01-25 23:28:27 UTC (buildkit.dockerfile.v0)

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

2023-01-25 23:28:27 UTC (buildkit.dockerfile.v0)

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

2023-01-25 23:28:27 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