Namespace
clickhouse
Image / Tag
clickhouse-server:22.3.4.20
Content Digest
sha256:9412b79788ea25e08cd4db2a71b478e0817f4d03214096be5e23452655dc392c
Details
Created

2022-04-26 10:52:28 UTC

Size

293 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/2226165699

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:8e5c1b329fe39c318c0d49821b339fb94a215c5dc0a2898c8030b5a4d091bcba - 9.29% (27.2 MB)

[#001] sha256:f18174b71aaac2c4a87413c6db114a4c76a2d1868407382dd0644b9de7e0b1eb - 0.0% (1.57 KB)

[#002] sha256:4d8cfd06918eacd761828c67c9425a150bffe5ab0e704174ef0c292301a895a3 - 12.87% (37.8 MB)

[#003] sha256:702df000db4c16df3420535ecb5c97776ffc357026939eff4e81c9dfdd600e86 - 77.56% (228 MB)

[#004] sha256:f1776feba8681b3fbb96dbfac533414f87a6c064692c7f1e73eca2cc25273153 - 0.28% (843 KB)

[#005] sha256:54b8e94656a295cc50b418dc19ea3f3bac6d9b9b5f6d1d42bb31634d9cccca6c - 0.0% (122 Bytes)

[#006] sha256:eb85f013cf36c346f74db389c38db95629c4a2e8285f40d0d7ce83bd089b7804 - 0.0% (373 Bytes)

[#007] sha256:41808be6be8770b3f85df2bb1d233f864ef9d5ef3080fc5c8a2c99b47b2a91b9 - 0.0% (2.32 KB)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2022-04-21 23:00:07 UTC

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

2022-04-21 23:00:07 UTC

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

2022-04-26 09:02:03 UTC (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2022-04-26 09:02:03 UTC (buildkit.dockerfile.v0)

COPY su-exec.c /su-exec.c # buildkit

2022-04-26 09:02:03 UTC (buildkit.dockerfile.v0)

ARG apt_archive=http://archive.ubuntu.com

2022-04-26 09:02:21 UTC (buildkit.dockerfile.v0)

RUN |2 DEBIAN_FRONTEND=noninteractive apt_archive=http://archive.ubuntu.com /bin/sh -c sed -i "s|http://archive.ubuntu.com|${apt_archive}|g" /etc/apt/sources.list && groupadd -r clickhouse --gid=101 && useradd -r -g clickhouse --uid=101 --home-dir=/var/lib/clickhouse --shell=/bin/bash clickhouse && apt-get update && apt-get install --yes --no-install-recommends apt-transport-https ca-certificates dirmngr gnupg locales wget tzdata && apt-get install -y --no-install-recommends tcc libc-dev && tcc /su-exec.c -o /bin/su-exec && chown root:root /bin/su-exec && chmod 0755 /bin/su-exec && rm /su-exec.c && apt-get purge -y --auto-remove tcc libc-dev libc-dev-bin libc6-dev linux-libc-dev && apt-get clean # buildkit

2022-04-26 09:02:21 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2022-04-26 09:02:21 UTC (buildkit.dockerfile.v0)

ARG REPOSITORY=deb https://packages.clickhouse.com/deb stable main

2022-04-26 09:02:21 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.1.1.*

2022-04-26 09:02:21 UTC (buildkit.dockerfile.v0)

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

2022-04-26 09:02:21 UTC (buildkit.dockerfile.v0)

ARG deb_location_url=

2022-04-26 09:02:21 UTC (buildkit.dockerfile.v0)

ARG single_binary_location_url=

2022-04-26 09:02:21 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2022-04-26 10:52:25 UTC (buildkit.dockerfile.v0)

RUN |9 DEBIAN_FRONTEND=noninteractive apt_archive=http://archive.ubuntu.com REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/22.3/ecbaf001f49c3ec47737e87ab4d2965a98cff9e8/package_release VERSION=22.3.4.20 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/ecbaf001f49c3ec47737e87ab4d2965a98cff9e8/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c arch=${TARGETARCH:-amd64} && if [ -n "${deb_location_url}" ]; then echo "installing from custom url with deb packages: ${deb_location_url}" rm -rf /tmp/clickhouse_debs && mkdir -p /tmp/clickhouse_debs && for package in ${PACKAGES}; do { wget --progress=bar:force:noscroll "${deb_location_url}/${package}_${VERSION}_${arch}.deb" -P /tmp/clickhouse_debs || wget --progress=bar:force:noscroll "${deb_location_url}/${package}_${VERSION}_all.deb" -P /tmp/clickhouse_debs ; } || exit 1 ; done && dpkg -i /tmp/clickhouse_debs/*.deb ; elif [ -n "${single_binary_location_url}" ]; then echo "installing from single binary url: ${single_binary_location_url}" && rm -rf /tmp/clickhouse_binary && mkdir -p /tmp/clickhouse_binary && wget --progress=bar:force:noscroll "${single_binary_location_url}" -O /tmp/clickhouse_binary/clickhouse && chmod +x /tmp/clickhouse_binary/clickhouse && /tmp/clickhouse_binary/clickhouse install --user "clickhouse" --group "clickhouse" ; else mkdir -p /etc/apt/sources.list.d && apt-key adv --keyserver keyserver.ubuntu.com --recv 8919F6BD2B48D754 && echo ${REPOSITORY} > /etc/apt/sources.list.d/clickhouse.list && echo "installing from repository: ${REPOSITORY}" && apt-get update && apt-get --yes -o "Dpkg::Options::=--force-confdef" -o "Dpkg::Options::=--force-confold" upgrade && for package in ${PACKAGES}; do apt-get install --allow-unauthenticated --yes --no-install-recommends "${package}=${VERSION}" || exit 1 ; done ; fi && clickhouse-local -q 'SELECT * FROM system.build_options' && rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/* && mkdir -p /var/lib/clickhouse /var/log/clickhouse-server /etc/clickhouse-server /etc/clickhouse-client && chmod ugo+Xrw -R /var/lib/clickhouse /var/log/clickhouse-server /etc/clickhouse-server /etc/clickhouse-client # buildkit

2022-04-26 10:52:27 UTC (buildkit.dockerfile.v0)

RUN |9 DEBIAN_FRONTEND=noninteractive apt_archive=http://archive.ubuntu.com REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/22.3/ecbaf001f49c3ec47737e87ab4d2965a98cff9e8/package_release VERSION=22.3.4.20 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/ecbaf001f49c3ec47737e87ab4d2965a98cff9e8/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit

2022-04-26 10:52:27 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8

2022-04-26 10:52:27 UTC (buildkit.dockerfile.v0)

ENV LANGUAGE=en_US:en

2022-04-26 10:52:27 UTC (buildkit.dockerfile.v0)

ENV LC_ALL=en_US.UTF-8

2022-04-26 10:52:27 UTC (buildkit.dockerfile.v0)

ENV TZ=UTC

2022-04-26 10:52:27 UTC (buildkit.dockerfile.v0)

RUN |9 DEBIAN_FRONTEND=noninteractive apt_archive=http://archive.ubuntu.com REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/22.3/ecbaf001f49c3ec47737e87ab4d2965a98cff9e8/package_release VERSION=22.3.4.20 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/ecbaf001f49c3ec47737e87ab4d2965a98cff9e8/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2022-04-26 10:52:28 UTC (buildkit.dockerfile.v0)

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

2022-04-26 10:52:28 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2022-04-26 10:52:28 UTC (buildkit.dockerfile.v0)

RUN |9 DEBIAN_FRONTEND=noninteractive apt_archive=http://archive.ubuntu.com REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/22.3/ecbaf001f49c3ec47737e87ab4d2965a98cff9e8/package_release VERSION=22.3.4.20 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/ecbaf001f49c3ec47737e87ab4d2965a98cff9e8/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c chmod +x /entrypoint.sh # buildkit

2022-04-26 10:52:28 UTC (buildkit.dockerfile.v0)

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

2022-04-26 10:52:28 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse]

2022-04-26 10:52:28 UTC (buildkit.dockerfile.v0)

ENV CLICKHOUSE_CONFIG=/etc/clickhouse-server/config.xml

2022-04-26 10:52:28 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/entrypoint.sh"]

Details
Created

2022-04-26 10:53:51 UTC

Size

218 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/2226165699

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:61e1864f78be077e322819a4ce1e09da9389c8119cf552629dc048b713a3f42b - 11.9% (25.9 MB)

[#001] sha256:f18174b71aaac2c4a87413c6db114a4c76a2d1868407382dd0644b9de7e0b1eb - 0.0% (1.57 KB)

[#002] sha256:eb1a5ea49d5d086b5cae65099ea210b85079de4638a572de0416d88244044e95 - 15.28% (33.3 MB)

[#003] sha256:b6f27b999b8588e50ae9defdeaa7193f9980c0e8a35beffd04d357bcb5e4a4ee - 72.44% (158 MB)

[#004] sha256:07088b6a090322f4ca137615d2a502aba0763ed8e6a91eb6dcd5efebf4109724 - 0.38% (843 KB)

[#005] sha256:81635b3514ae143aa5615442f24d18562384be78acba7bcda7a4ad277cb057dc - 0.0% (122 Bytes)

[#006] sha256:2102cd915f69897a2679149a59a11aafa144878d43f141206c33ad43e03e9e77 - 0.0% (371 Bytes)

[#007] sha256:41808be6be8770b3f85df2bb1d233f864ef9d5ef3080fc5c8a2c99b47b2a91b9 - 0.0% (2.32 KB)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2022-04-22 00:54:11 UTC

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

2022-04-22 00:54:11 UTC

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

2022-04-26 09:03:41 UTC (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2022-04-26 09:03:41 UTC (buildkit.dockerfile.v0)

COPY su-exec.c /su-exec.c # buildkit

2022-04-26 09:03:41 UTC (buildkit.dockerfile.v0)

ARG apt_archive=http://archive.ubuntu.com

2022-04-26 09:05:57 UTC (buildkit.dockerfile.v0)

RUN |2 DEBIAN_FRONTEND=noninteractive apt_archive=http://archive.ubuntu.com /bin/sh -c sed -i "s|http://archive.ubuntu.com|${apt_archive}|g" /etc/apt/sources.list && groupadd -r clickhouse --gid=101 && useradd -r -g clickhouse --uid=101 --home-dir=/var/lib/clickhouse --shell=/bin/bash clickhouse && apt-get update && apt-get install --yes --no-install-recommends apt-transport-https ca-certificates dirmngr gnupg locales wget tzdata && apt-get install -y --no-install-recommends tcc libc-dev && tcc /su-exec.c -o /bin/su-exec && chown root:root /bin/su-exec && chmod 0755 /bin/su-exec && rm /su-exec.c && apt-get purge -y --auto-remove tcc libc-dev libc-dev-bin libc6-dev linux-libc-dev && apt-get clean # buildkit

2022-04-26 09:05:57 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2022-04-26 09:05:57 UTC (buildkit.dockerfile.v0)

ARG REPOSITORY=deb https://packages.clickhouse.com/deb stable main

2022-04-26 09:05:57 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.1.1.*

2022-04-26 09:05:57 UTC (buildkit.dockerfile.v0)

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

2022-04-26 09:05:57 UTC (buildkit.dockerfile.v0)

ARG deb_location_url=

2022-04-26 09:05:57 UTC (buildkit.dockerfile.v0)

ARG single_binary_location_url=

2022-04-26 09:05:57 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2022-04-26 10:53:42 UTC (buildkit.dockerfile.v0)

RUN |9 DEBIAN_FRONTEND=noninteractive apt_archive=http://archive.ubuntu.com REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/22.3/ecbaf001f49c3ec47737e87ab4d2965a98cff9e8/package_aarch64 VERSION=22.3.4.20 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/ecbaf001f49c3ec47737e87ab4d2965a98cff9e8/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c arch=${TARGETARCH:-amd64} && if [ -n "${deb_location_url}" ]; then echo "installing from custom url with deb packages: ${deb_location_url}" rm -rf /tmp/clickhouse_debs && mkdir -p /tmp/clickhouse_debs && for package in ${PACKAGES}; do { wget --progress=bar:force:noscroll "${deb_location_url}/${package}_${VERSION}_${arch}.deb" -P /tmp/clickhouse_debs || wget --progress=bar:force:noscroll "${deb_location_url}/${package}_${VERSION}_all.deb" -P /tmp/clickhouse_debs ; } || exit 1 ; done && dpkg -i /tmp/clickhouse_debs/*.deb ; elif [ -n "${single_binary_location_url}" ]; then echo "installing from single binary url: ${single_binary_location_url}" && rm -rf /tmp/clickhouse_binary && mkdir -p /tmp/clickhouse_binary && wget --progress=bar:force:noscroll "${single_binary_location_url}" -O /tmp/clickhouse_binary/clickhouse && chmod +x /tmp/clickhouse_binary/clickhouse && /tmp/clickhouse_binary/clickhouse install --user "clickhouse" --group "clickhouse" ; else mkdir -p /etc/apt/sources.list.d && apt-key adv --keyserver keyserver.ubuntu.com --recv 8919F6BD2B48D754 && echo ${REPOSITORY} > /etc/apt/sources.list.d/clickhouse.list && echo "installing from repository: ${REPOSITORY}" && apt-get update && apt-get --yes -o "Dpkg::Options::=--force-confdef" -o "Dpkg::Options::=--force-confold" upgrade && for package in ${PACKAGES}; do apt-get install --allow-unauthenticated --yes --no-install-recommends "${package}=${VERSION}" || exit 1 ; done ; fi && clickhouse-local -q 'SELECT * FROM system.build_options' && rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/* && mkdir -p /var/lib/clickhouse /var/log/clickhouse-server /etc/clickhouse-server /etc/clickhouse-client && chmod ugo+Xrw -R /var/lib/clickhouse /var/log/clickhouse-server /etc/clickhouse-server /etc/clickhouse-client # buildkit

2022-04-26 10:53:51 UTC (buildkit.dockerfile.v0)

RUN |9 DEBIAN_FRONTEND=noninteractive apt_archive=http://archive.ubuntu.com REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/22.3/ecbaf001f49c3ec47737e87ab4d2965a98cff9e8/package_aarch64 VERSION=22.3.4.20 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/ecbaf001f49c3ec47737e87ab4d2965a98cff9e8/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit

2022-04-26 10:53:51 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8

2022-04-26 10:53:51 UTC (buildkit.dockerfile.v0)

ENV LANGUAGE=en_US:en

2022-04-26 10:53:51 UTC (buildkit.dockerfile.v0)

ENV LC_ALL=en_US.UTF-8

2022-04-26 10:53:51 UTC (buildkit.dockerfile.v0)

ENV TZ=UTC

2022-04-26 10:53:51 UTC (buildkit.dockerfile.v0)

RUN |9 DEBIAN_FRONTEND=noninteractive apt_archive=http://archive.ubuntu.com REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/22.3/ecbaf001f49c3ec47737e87ab4d2965a98cff9e8/package_aarch64 VERSION=22.3.4.20 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/ecbaf001f49c3ec47737e87ab4d2965a98cff9e8/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2022-04-26 10:53:51 UTC (buildkit.dockerfile.v0)

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

2022-04-26 10:53:51 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2022-04-26 10:53:51 UTC (buildkit.dockerfile.v0)

RUN |9 DEBIAN_FRONTEND=noninteractive apt_archive=http://archive.ubuntu.com REPO_CHANNEL=stable REPOSITORY=https://s3.amazonaws.com/clickhouse-builds/22.3/ecbaf001f49c3ec47737e87ab4d2965a98cff9e8/package_aarch64 VERSION=22.3.4.20 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/ecbaf001f49c3ec47737e87ab4d2965a98cff9e8/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c chmod +x /entrypoint.sh # buildkit

2022-04-26 10:53:51 UTC (buildkit.dockerfile.v0)

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

2022-04-26 10:53:51 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse]

2022-04-26 10:53:51 UTC (buildkit.dockerfile.v0)

ENV CLICKHOUSE_CONFIG=/etc/clickhouse-server/config.xml

2022-04-26 10:53:51 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