Namespace
clickhouse
Image / Tag
clickhouse-server:23.7.2.25-alpine
Content Digest
sha256:ef197de711f3bba5bf2815fa106f0cc5945b89d3eaddaeda53e6197e6a3be0c0
Details
Created

2023-08-03 09:56:09 UTC

Size

257 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/5749148212
  • com.clickhouse.build.githash
    8dd1107b0329ea4d7165cbc9e8e71c4e5bb1b045

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:31e352740f534f9ad170f75378a84fe453d6156e40700b882d737a8f4a6988a3 - 1.26% (3.24 MB)

[#001] sha256:9cf6eef33b819fa69afd9f3b4fb4d1c935eb3d74914ef09b66a6b95d69584934 - 0.75% (1.93 MB)

[#002] sha256:fa2b1dd33327a11185b60a5ca7f966156f4c488bd3c221dbc3c52f05e08871ec - 0.0% (383 Bytes)

[#003] sha256:c040794c2a6fbfb6a52b18b8b77f554d8949ec894ab76dfc4002d1c4be94f5a3 - 0.0% (346 Bytes)

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

[#005] sha256:e9bc2c4bfc7af24cfc01e53b7b60996e783811117769fbaf63d4b2505fe284d3 - 0.0% (150 Bytes)

[#006] sha256:7d289a39bf40e3d926ab051e9b91f77f7eb1b78f1db5816d2636b9a0a9ac6dd5 - 97.99% (252 MB)


History
2023-06-14 20:41:58 UTC

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

2023-06-14 20:41:59 UTC

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

2023-08-03 09:55: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

2023-08-03 09:55: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

2023-08-03 09:55:44 UTC (buildkit.dockerfile.v0)

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

2023-08-03 09:55:44 UTC (buildkit.dockerfile.v0)

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

2023-08-03 09:55:44 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2023-08-03 09:55:44 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-08-03 09:55:44 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-08-03 09:55:44 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2023-08-03 09:55:44 UTC (buildkit.dockerfile.v0)

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

2023-08-03 09:55:44 UTC (buildkit.dockerfile.v0)

ARG VERSION=23.6.2.18

2023-08-03 09:55:44 UTC (buildkit.dockerfile.v0)

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

2023-08-03 09:56:09 UTC (buildkit.dockerfile.v0)

RUN |5 TARGETARCH=amd64 REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/23.7/8dd1107b0329ea4d7165cbc9e8e71c4e5bb1b045/package_release VERSION=23.7.2.25 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-08-03 09:56:09 UTC (buildkit.dockerfile.v0)

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

2023-08-03 09:56:09 UTC (buildkit.dockerfile.v0)

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

2023-08-03 09:56:09 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/entrypoint.sh"]

Details
Created

2023-08-03 09:57:45 UTC

Size

190 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/5749148212
  • com.clickhouse.build.githash
    8dd1107b0329ea4d7165cbc9e8e71c4e5bb1b045

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:8c6d1654570f041603f4cef49c320c8f6f3e401324913009d92a19132cbf1ac0 - 1.67% (3.18 MB)

[#001] sha256:e4975e8749b10ed8af5f3e9216866b938d3181612005b0aaba7ecd654051e81b - 0.67% (1.27 MB)

[#002] sha256:58fdb130e778952b227f30eea99bdb5dc1cab99b4c47cce225359a3d4a1800d7 - 0.0% (383 Bytes)

[#003] sha256:5149a8a6ebfa2f9179fe3d8136b8326a4f9938650fcf067bb4b479215da9a214 - 0.0% (345 Bytes)

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

[#005] sha256:7c9c9150dee6caff2ce0717d8788c6055702525b77aaaf24ac74e6db834bcf1b - 0.0% (149 Bytes)

[#006] sha256:28f6803544fa29d3d5195bfd04b0800142a217039bb4dc719380db31c2b29276 - 97.66% (186 MB)


History
2023-06-14 20:48:58 UTC

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

2023-06-14 20:48:58 UTC

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

2023-08-03 09:56:55 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-08-03 09:56:55 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-08-03 09:56:55 UTC (buildkit.dockerfile.v0)

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

2023-08-03 09:56:55 UTC (buildkit.dockerfile.v0)

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

2023-08-03 09:56:56 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2023-08-03 09:56:56 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-08-03 09:56:56 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-08-03 09:56:56 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2023-08-03 09:56:56 UTC (buildkit.dockerfile.v0)

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

2023-08-03 09:56:56 UTC (buildkit.dockerfile.v0)

ARG VERSION=23.6.2.18

2023-08-03 09:56:56 UTC (buildkit.dockerfile.v0)

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

2023-08-03 09:57:45 UTC (buildkit.dockerfile.v0)

RUN |5 TARGETARCH=arm64 REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/23.7/8dd1107b0329ea4d7165cbc9e8e71c4e5bb1b045/package_aarch64 VERSION=23.7.2.25 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-08-03 09:57:45 UTC (buildkit.dockerfile.v0)

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

2023-08-03 09:57:45 UTC (buildkit.dockerfile.v0)

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

2023-08-03 09:57:45 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