Namespace
clickhouse
Image / Tag
clickhouse-server:24.1.5-alpine
Content Digest
sha256:17bf446b145cc46d4f8245cd57c627a2c10d0eafa58b2798e72ad7cb776c335e
Details
Created

2024-02-14 17:26:51 UTC

Size

262 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/7904922520
  • com.clickhouse.build.githash
    7f67181ff319e47c534edfa707f10ff0231b4183

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:4abcf20661432fb2d719aaf90656f55c287f8ca915dc1c92ec14ff61e67fbaf8 - 1.24% (3.25 MB)

[#001] sha256:a363fba5fe7c4a3cd04323ea133357ce9f60f24053090d665003e133cb82f75f - 0.74% (1.93 MB)

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

[#003] sha256:ee188d33868dcff0ff3aa409dfc10061468b980d011c23605c13545a231cf0bb - 0.0% (344 Bytes)

[#004] sha256:765653bf99a01859e9f1c6e17005386d1841248bfbca3411c8a22eacd9664b4f - 0.0% (3.02 KB)

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

[#006] sha256:3c524f9efdd8498cb721d38042fc9e8c52fa6c23360b232ff0194a58c4c921af - 98.02% (256 MB)


History
2024-01-27 00:30:48 UTC

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

2024-01-27 00:30:48 UTC

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

2024-02-14 17:26:20 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

2024-02-14 17:26:20 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

2024-02-14 17:26:20 UTC (buildkit.dockerfile.v0)

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

2024-02-14 17:26:20 UTC (buildkit.dockerfile.v0)

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

2024-02-14 17:26:20 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2024-02-14 17:26:20 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2024-02-14 17:26:20 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

2024-02-14 17:26:20 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2024-02-14 17:26:20 UTC (buildkit.dockerfile.v0)

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

2024-02-14 17:26:20 UTC (buildkit.dockerfile.v0)

ARG VERSION=23.12.2.59

2024-02-14 17:26:20 UTC (buildkit.dockerfile.v0)

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

2024-02-14 17:26:20 UTC (buildkit.dockerfile.v0)

ARG DIRECT_DOWNLOAD_URLS=

2024-02-14 17:26:51 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETARCH=amd64 REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/24.1/7f67181ff319e47c534edfa707f10ff0231b4183/package_release VERSION=24.1.5.6 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static DIRECT_DOWNLOAD_URLS= /bin/sh -c arch=${TARGETARCH:-amd64} && cd /tmp && if [ -n "${DIRECT_DOWNLOAD_URLS}" ]; then echo "installing from provided urls with tgz packages: ${DIRECT_DOWNLOAD_URLS}" && for url in $DIRECT_DOWNLOAD_URLS; do echo "Get ${url}" && wget -c -q "$url" ; done else for package in ${PACKAGES}; do echo "Get ${REPOSITORY}/${package}-${VERSION}-${arch}.tgz" && wget -c -q "${REPOSITORY}/${package}-${VERSION}-${arch}.tgz" && wget -c -q "${REPOSITORY}/${package}-${VERSION}-${arch}.tgz.sha512" ; done fi && cat *.tgz.sha512 | sed 's:/output/:/tmp/:' | sha512sum -c && for file in *.tgz; do if [ -f "$file" ]; then echo "Unpacking $file"; tar xvzf "$file" --strip-components=1 -C /; fi ; 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

2024-02-14 17:26:51 UTC (buildkit.dockerfile.v0)

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

2024-02-14 17:26:51 UTC (buildkit.dockerfile.v0)

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

2024-02-14 17:26:51 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/entrypoint.sh"]

Details
Created

2024-02-14 17:28:47 UTC

Size

249 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/7904922520
  • com.clickhouse.build.githash
    7f67181ff319e47c534edfa707f10ff0231b4183

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:bca4290a96390d7a6fc6f2f9929370d06f8dfcacba591c76e3d5c5044e7f420c - 1.28% (3.19 MB)

[#001] sha256:aac9836c58461f0fc9e80f78ecbcc432537438b6816acceebca266888655b43a - 0.51% (1.27 MB)

[#002] sha256:0e46b5623f83a891b569c6e2efb76483549e549e7db4e2004642a922f619b803 - 0.0% (385 Bytes)

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

[#004] sha256:765653bf99a01859e9f1c6e17005386d1841248bfbca3411c8a22eacd9664b4f - 0.0% (3.02 KB)

[#005] sha256:8b737693c3ad555ea77c84fb582f91b5c8bd1585a8b83bd3930f8d99411044b0 - 0.0% (148 Bytes)

[#006] sha256:0f73e087a700656a1e083ea5ad2abefbd14b06b73d38a6904a1ff710d52f58a0 - 98.21% (245 MB)


History
2024-01-26 23:44:47 UTC

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

2024-01-26 23:44:47 UTC

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

2024-02-14 17:27:35 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

2024-02-14 17:27:35 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

2024-02-14 17:27:35 UTC (buildkit.dockerfile.v0)

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

2024-02-14 17:27:35 UTC (buildkit.dockerfile.v0)

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

2024-02-14 17:27:35 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2024-02-14 17:27:35 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2024-02-14 17:27:35 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

2024-02-14 17:27:35 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2024-02-14 17:27:35 UTC (buildkit.dockerfile.v0)

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

2024-02-14 17:27:35 UTC (buildkit.dockerfile.v0)

ARG VERSION=23.12.2.59

2024-02-14 17:27:35 UTC (buildkit.dockerfile.v0)

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

2024-02-14 17:27:35 UTC (buildkit.dockerfile.v0)

ARG DIRECT_DOWNLOAD_URLS=

2024-02-14 17:28:47 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETARCH=arm64 REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/24.1/7f67181ff319e47c534edfa707f10ff0231b4183/package_aarch64 VERSION=24.1.5.6 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static DIRECT_DOWNLOAD_URLS= /bin/sh -c arch=${TARGETARCH:-amd64} && cd /tmp && if [ -n "${DIRECT_DOWNLOAD_URLS}" ]; then echo "installing from provided urls with tgz packages: ${DIRECT_DOWNLOAD_URLS}" && for url in $DIRECT_DOWNLOAD_URLS; do echo "Get ${url}" && wget -c -q "$url" ; done else for package in ${PACKAGES}; do echo "Get ${REPOSITORY}/${package}-${VERSION}-${arch}.tgz" && wget -c -q "${REPOSITORY}/${package}-${VERSION}-${arch}.tgz" && wget -c -q "${REPOSITORY}/${package}-${VERSION}-${arch}.tgz.sha512" ; done fi && cat *.tgz.sha512 | sed 's:/output/:/tmp/:' | sha512sum -c && for file in *.tgz; do if [ -f "$file" ]; then echo "Unpacking $file"; tar xvzf "$file" --strip-components=1 -C /; fi ; 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

2024-02-14 17:28:47 UTC (buildkit.dockerfile.v0)

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

2024-02-14 17:28:47 UTC (buildkit.dockerfile.v0)

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

2024-02-14 17:28:47 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