Namespace
clickhouse
Image / Tag
clickhouse-server:23.8.10.43-alpine
Content Digest
sha256:89816c76d3b868c8830f7da4ae60006651b8bc54bac7d11474f983c42b2c85d7
Details
Created

2024-03-05 10:21:19 UTC

Size

268 MB

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

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.21% (3.25 MB)

[#001] sha256:1f50c26cd1ebf8d559e71092d820cca82efc32da8ff5df20ade3e91ff0085423 - 0.72% (1.93 MB)

[#002] sha256:c7e0b838acd26336f288b3ceba96b645b81278aee1c189fb1c1d1dc9397d8a9c - 0.0% (382 Bytes)

[#003] sha256:4e04667842e52c70e9f6b89bf6f93731194dd0f402392abba03b1c2d089a5fc4 - 0.0% (347 Bytes)

[#004] sha256:8b7ae3e29eee8d0690d7aa8883ef860b0851f26ae7c05cc121d466062aafff69 - 0.0% (2.87 KB)

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

[#006] sha256:b8a651e37b6c16f08dd436eab3c570fd9643589bbe7d81f78bea8c1e55fa0297 - 98.06% (262 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-03-05 10:00:13 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-03-05 10:00:13 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-03-05 10:00:13 UTC (buildkit.dockerfile.v0)

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

2024-03-05 10:00:13 UTC (buildkit.dockerfile.v0)

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

2024-03-05 10:14:33 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2024-03-05 10:14:33 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2024-03-05 10:14:33 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-03-05 10:14:33 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2024-03-05 10:14:33 UTC (buildkit.dockerfile.v0)

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

2024-03-05 10:14:33 UTC (buildkit.dockerfile.v0)

ARG VERSION=23.7.5.30

2024-03-05 10:14:33 UTC (buildkit.dockerfile.v0)

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

2024-03-05 10:21:19 UTC (buildkit.dockerfile.v0)

RUN |5 TARGETARCH=amd64 REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/23.8/a278225bba98c092a9b8101e6c02836bbc4d030b/package_release VERSION=23.8.10.43 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static /bin/sh -c arch=${TARGETARCH:-amd64} && for package in ${PACKAGES}; do ( cd /tmp && echo "Get ${REPOSITORY}/${package}-${VERSION}-${arch}.tgz" && wget -c -q "${REPOSITORY}/${package}-${VERSION}-${arch}.tgz" && wget -c -q "${REPOSITORY}/${package}-${VERSION}-${arch}.tgz.sha512" && sed 's:/output/:/tmp/:' < "${package}-${VERSION}-${arch}.tgz.sha512" | sha512sum -c && tar xvzf "${package}-${VERSION}-${arch}.tgz" --strip-components=1 -C / ) ; 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-03-05 10:21:19 UTC (buildkit.dockerfile.v0)

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

2024-03-05 10:21:19 UTC (buildkit.dockerfile.v0)

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

2024-03-05 10:21:19 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/entrypoint.sh"]

Details
Created

2024-03-05 10:20:14 UTC

Size

261 MB

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

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.22% (3.19 MB)

[#001] sha256:0f6eaf3ba442777dfdb4740ce8497f10be9be4177b57612e012928f5cf27c6fd - 0.49% (1.27 MB)

[#002] sha256:562d24b578be5fc5502a921f55a7215e1f05309b2d7ba85d85c055dedb877679 - 0.0% (384 Bytes)

[#003] sha256:92ed01f4e50d8fba80134166ba5e1b53d45c0186576271fedb1f95c6273bd585 - 0.0% (348 Bytes)

[#004] sha256:8b7ae3e29eee8d0690d7aa8883ef860b0851f26ae7c05cc121d466062aafff69 - 0.0% (2.87 KB)

[#005] sha256:996a41fbceac3a07e58f819091c672c009a4e12a31325b6f4d5cb4834e68f29d - 0.0% (148 Bytes)

[#006] sha256:29ebbc0d70f662ccf995f5933d2525060606a418c2203d8b3085a0dc680302a0 - 98.28% (256 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-03-05 10:18: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

2024-03-05 10:18: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

2024-03-05 10:18:53 UTC (buildkit.dockerfile.v0)

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

2024-03-05 10:18:53 UTC (buildkit.dockerfile.v0)

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

2024-03-05 10:18:53 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2024-03-05 10:18:53 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2024-03-05 10:18:53 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-03-05 10:18:53 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2024-03-05 10:18:53 UTC (buildkit.dockerfile.v0)

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

2024-03-05 10:18:53 UTC (buildkit.dockerfile.v0)

ARG VERSION=23.7.5.30

2024-03-05 10:18:53 UTC (buildkit.dockerfile.v0)

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

2024-03-05 10:20:14 UTC (buildkit.dockerfile.v0)

RUN |5 TARGETARCH=arm64 REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/23.8/a278225bba98c092a9b8101e6c02836bbc4d030b/package_aarch64 VERSION=23.8.10.43 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static /bin/sh -c arch=${TARGETARCH:-amd64} && for package in ${PACKAGES}; do ( cd /tmp && echo "Get ${REPOSITORY}/${package}-${VERSION}-${arch}.tgz" && wget -c -q "${REPOSITORY}/${package}-${VERSION}-${arch}.tgz" && wget -c -q "${REPOSITORY}/${package}-${VERSION}-${arch}.tgz.sha512" && sed 's:/output/:/tmp/:' < "${package}-${VERSION}-${arch}.tgz.sha512" | sha512sum -c && tar xvzf "${package}-${VERSION}-${arch}.tgz" --strip-components=1 -C / ) ; 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-03-05 10:20:14 UTC (buildkit.dockerfile.v0)

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

2024-03-05 10:20:14 UTC (buildkit.dockerfile.v0)

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

2024-03-05 10:20:14 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