Namespace
clickhouse
Image / Tag
clickhouse-server:22.6.2.12-alpine
Content Digest
sha256:c945a2410c4fad8161a1d9373de08ce808e934d2273d046045ac0bd41a5281c9
Details
Created

2022-06-29 11:30:14 UTC

Size

235 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/2582725049
  • com.clickhouse.build.githash
    1fc97f10cbffda0ae8460c575a4637e45e09cc11

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:2408cc74d12b6cd092bb8b516ba7d5e290f485d3eb9672efc00f0583730179e8 - 1.13% (2.67 MB)

[#001] sha256:317cef01c120d9a62eb8506bf0fbfc1e62ea53ac62e90c7613be48631dec061e - 0.82% (1.93 MB)

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

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

[#004] sha256:ff5dc61e7fcec17c95626129da60b85726241ff403d2bbedcc14f47b70820e59 - 0.0% (2.15 KB)

[#005] sha256:538f9e7619562d374944b888b03ba63dd483a25f64758c8d3e4b3614ee752a32 - 0.0% (156 Bytes)

[#006] sha256:29f21ec705372a3d432369afdf3ffc43b0add4f2282915e38dee19601d195616 - 98.04% (231 MB)


History
2022-05-23 19:19:30 UTC

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

2022-05-23 19:19:31 UTC

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

2022-06-29 07:00:33 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-06-29 07:00:33 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-06-29 07:00:33 UTC (buildkit.dockerfile.v0)

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

2022-06-29 07:00:33 UTC (buildkit.dockerfile.v0)

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

2022-06-29 11:29:55 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2022-06-29 11:29:55 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2022-06-29 11:29:55 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-06-29 11:29:55 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2022-06-29 11:29:55 UTC (buildkit.dockerfile.v0)

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

2022-06-29 11:29:55 UTC (buildkit.dockerfile.v0)

ARG VERSION=20.9.3.45

2022-06-29 11:29:55 UTC (buildkit.dockerfile.v0)

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

2022-06-29 11:30:14 UTC (buildkit.dockerfile.v0)

RUN |5 TARGETARCH=amd64 REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/22.6/1fc97f10cbffda0ae8460c575a4637e45e09cc11/package_release VERSION=22.6.2.12 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-06-29 11:30:14 UTC (buildkit.dockerfile.v0)

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

2022-06-29 11:30:14 UTC (buildkit.dockerfile.v0)

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

2022-06-29 11:30:14 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/entrypoint.sh"]

Details
Created

2022-06-29 11:31:36 UTC

Size

169 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/2582725049
  • com.clickhouse.build.githash
    1fc97f10cbffda0ae8460c575a4637e45e09cc11

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:b3c136eddcbf2003d3180787cef00f39d46b9fd9e4623178282ad6a8d63ad3b0 - 1.52% (2.57 MB)

[#001] sha256:3688e8f088d5193d9508ef3389175ab297502c362782edeff559e1595a0bb487 - 0.75% (1.27 MB)

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

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

[#004] sha256:ff5dc61e7fcec17c95626129da60b85726241ff403d2bbedcc14f47b70820e59 - 0.0% (2.15 KB)

[#005] sha256:44e9f6a04fd0097d2510939c7381df9a32dc02ff76ca1c0ed4c00765391e842f - 0.0% (155 Bytes)

[#006] sha256:c72edd3801f9a965866037b1f80848e865cf88d186083793deae3bf54ee0cc06 - 97.73% (166 MB)


History
2022-05-23 19:39:22 UTC

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

2022-05-23 19:39:22 UTC

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

2022-06-29 07:01:42 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-06-29 07:01:42 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-06-29 07:01:42 UTC (buildkit.dockerfile.v0)

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

2022-06-29 07:01:42 UTC (buildkit.dockerfile.v0)

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

2022-06-29 11:30:54 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2022-06-29 11:30:54 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2022-06-29 11:30:54 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-06-29 11:30:54 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2022-06-29 11:30:54 UTC (buildkit.dockerfile.v0)

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

2022-06-29 11:30:54 UTC (buildkit.dockerfile.v0)

ARG VERSION=20.9.3.45

2022-06-29 11:30:54 UTC (buildkit.dockerfile.v0)

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

2022-06-29 11:31:36 UTC (buildkit.dockerfile.v0)

RUN |5 TARGETARCH=arm64 REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/22.6/1fc97f10cbffda0ae8460c575a4637e45e09cc11/package_aarch64 VERSION=22.6.2.12 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-06-29 11:31:36 UTC (buildkit.dockerfile.v0)

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

2022-06-29 11:31:36 UTC (buildkit.dockerfile.v0)

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

2022-06-29 11:31:36 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