Namespace
clickhouse
Image / Tag
clickhouse-server:22
Content Digest
sha256:51113182aa4227b6fbabc08d8504ee2a3aebd0fa5b86a21231ad26627f9c068a
Details
Created

2023-03-31 19:42:42 UTC

Size

314 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/4578554144
  • com.clickhouse.build.githash
    10d87f90261194270bb05b64c66adf23aae65dc6
  • org.opencontainers.image.ref.name
    ubuntu
  • org.opencontainers.image.version
    20.04

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:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26 - 8.37% (26.2 MB)

[#001] sha256:9f683c07b8312b5edbf849e26dfe4824e4cdb5e9ef1de0a8b9c5d3acfe3ce225 - 13.33% (41.8 MB)

[#002] sha256:2f321fc520404c0e6c2f5b2b1f6575435d4283cf1077ea2ca248e3077ab16f97 - 78.02% (245 MB)

[#003] sha256:b31e0d427df1e17b43bcc373f4a54a379e08554bb7602617f9097bbbc5008d8f - 0.03% (86.7 KB)

[#004] sha256:6bdde59aceee97255e0b26fcfbf78bd752280642e59aaaff0ad65f4b542acc09 - 0.26% (843 KB)

[#005] sha256:1b71206cde0dd4020025ef1a9714dbd86d33ca081331a4384f062e6965925d87 - 0.0% (122 Bytes)

[#006] sha256:f2d4d7d88355cfcbfb1196ddbf9018b8e88ce879a8ed9dec7f1cae108e609582 - 0.0% (370 Bytes)

[#007] sha256:d28198b905b8bb0a31b4a0fe808c3995177db959a8f03a53a161698452022d1f - 0.0% (2.45 KB)

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


History
2023-03-08 04:41:24 UTC

/bin/sh -c #(nop) ARG RELEASE

2023-03-08 04:41:24 UTC

/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH

2023-03-08 04:41:24 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu

2023-03-08 04:41:24 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.version=20.04

2023-03-08 04:41:26 UTC

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

2023-03-08 04:41:27 UTC

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

2023-03-31 19:42:17 UTC (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2023-03-31 19:42:17 UTC (buildkit.dockerfile.v0)

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

2023-03-31 19:42:17 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 clean # buildkit

2023-03-31 19:42:17 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2023-03-31 19:42:17 UTC (buildkit.dockerfile.v0)

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

2023-03-31 19:42:17 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.11.2.30

2023-03-31 19:42:17 UTC (buildkit.dockerfile.v0)

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

2023-03-31 19:42:17 UTC (buildkit.dockerfile.v0)

ARG deb_location_url=

2023-03-31 19:42:17 UTC (buildkit.dockerfile.v0)

ARG single_binary_location_url=

2023-03-31 19:42:17 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-03-31 19:42:38 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.12/10d87f90261194270bb05b64c66adf23aae65dc6/package_release VERSION=22.12.6.22 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/10d87f90261194270bb05b64c66adf23aae65dc6/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 packages="${packages} ${package}=${VERSION}" ; done && apt-get install --allow-unauthenticated --yes --no-install-recommends ${packages} || exit 1 ; 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

2023-03-31 19:42:40 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.12/10d87f90261194270bb05b64c66adf23aae65dc6/package_release VERSION=22.12.6.22 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/10d87f90261194270bb05b64c66adf23aae65dc6/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c apt-get remove --purge -y libksba8 && apt-get autoremove -y # buildkit

2023-03-31 19:42: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.12/10d87f90261194270bb05b64c66adf23aae65dc6/package_release VERSION=22.12.6.22 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/10d87f90261194270bb05b64c66adf23aae65dc6/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit

2023-03-31 19:42:42 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8

2023-03-31 19:42:42 UTC (buildkit.dockerfile.v0)

ENV LANGUAGE=en_US:en

2023-03-31 19:42:42 UTC (buildkit.dockerfile.v0)

ENV LC_ALL=en_US.UTF-8

2023-03-31 19:42:42 UTC (buildkit.dockerfile.v0)

ENV TZ=UTC

2023-03-31 19:42: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.12/10d87f90261194270bb05b64c66adf23aae65dc6/package_release VERSION=22.12.6.22 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/10d87f90261194270bb05b64c66adf23aae65dc6/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2023-03-31 19:42:42 UTC (buildkit.dockerfile.v0)

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

2023-03-31 19:42:42 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2023-03-31 19:42: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.12/10d87f90261194270bb05b64c66adf23aae65dc6/package_release VERSION=22.12.6.22 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/10d87f90261194270bb05b64c66adf23aae65dc6/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c chmod +x /entrypoint.sh # buildkit

2023-03-31 19:42:42 UTC (buildkit.dockerfile.v0)

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

2023-03-31 19:42:42 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse]

2023-03-31 19:42:42 UTC (buildkit.dockerfile.v0)

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

2023-03-31 19:42:42 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/entrypoint.sh"]

Details
Created

2023-03-31 19:46:36 UTC

Size

233 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/4578554144
  • com.clickhouse.build.githash
    10d87f90261194270bb05b64c66adf23aae65dc6
  • org.opencontainers.image.ref.name
    ubuntu
  • org.opencontainers.image.version
    20.04

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:a774dfcdedc7c7c4f0009ddadc2f33557d60452450684534df5625f9693df81a - 10.62% (24.8 MB)

[#001] sha256:abe0fff9dd885205cf0a8853194aac523a0003dbb7ce0d686fa18219bf5c29e3 - 15.02% (35 MB)

[#002] sha256:ebee2fc40853483a4c9ab0bf51825c32f9a62f70a251d4be0ab3c035aaba282b - 73.97% (172 MB)

[#003] sha256:26ca8b9e286e6482e63e6cb0a9354d0aba447d604143d0cee359ff71b6d4a399 - 0.04% (87.7 KB)

[#004] sha256:b510f8de159c337fd1e225d09cc50f04365541fbaa7184de48cb7f89c366e8a7 - 0.35% (843 KB)

[#005] sha256:3394b60d3495c4e6bbd5e8665e99fe842abfcadb3e5a639a6d633ce6992bb0f3 - 0.0% (122 Bytes)

[#006] sha256:5d583b491c7db7aac2930ed8758e6110e0e8fce7c6811ca0ba2a52fad4b64492 - 0.0% (374 Bytes)

[#007] sha256:d28198b905b8bb0a31b4a0fe808c3995177db959a8f03a53a161698452022d1f - 0.0% (2.45 KB)

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


History
2023-03-08 04:34:20 UTC

/bin/sh -c #(nop) ARG RELEASE

2023-03-08 04:34:20 UTC

/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH

2023-03-08 04:34:20 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu

2023-03-08 04:34:20 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.version=20.04

2023-03-08 04:34:24 UTC

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

2023-03-08 04:34:24 UTC

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

2023-03-31 19:45:43 UTC (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2023-03-31 19:45:43 UTC (buildkit.dockerfile.v0)

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

2023-03-31 19:45:43 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 clean # buildkit

2023-03-31 19:45:43 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2023-03-31 19:45:43 UTC (buildkit.dockerfile.v0)

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

2023-03-31 19:45:43 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.11.2.30

2023-03-31 19:45:43 UTC (buildkit.dockerfile.v0)

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

2023-03-31 19:45:43 UTC (buildkit.dockerfile.v0)

ARG deb_location_url=

2023-03-31 19:45:43 UTC (buildkit.dockerfile.v0)

ARG single_binary_location_url=

2023-03-31 19:45:43 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-03-31 19:46:16 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.12/10d87f90261194270bb05b64c66adf23aae65dc6/package_aarch64 VERSION=22.12.6.22 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/10d87f90261194270bb05b64c66adf23aae65dc6/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 packages="${packages} ${package}=${VERSION}" ; done && apt-get install --allow-unauthenticated --yes --no-install-recommends ${packages} || exit 1 ; 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

2023-03-31 19:46:26 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.12/10d87f90261194270bb05b64c66adf23aae65dc6/package_aarch64 VERSION=22.12.6.22 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/10d87f90261194270bb05b64c66adf23aae65dc6/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c apt-get remove --purge -y libksba8 && apt-get autoremove -y # buildkit

2023-03-31 19:46:35 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.12/10d87f90261194270bb05b64c66adf23aae65dc6/package_aarch64 VERSION=22.12.6.22 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/10d87f90261194270bb05b64c66adf23aae65dc6/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit

2023-03-31 19:46:35 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8

2023-03-31 19:46:35 UTC (buildkit.dockerfile.v0)

ENV LANGUAGE=en_US:en

2023-03-31 19:46:35 UTC (buildkit.dockerfile.v0)

ENV LC_ALL=en_US.UTF-8

2023-03-31 19:46:35 UTC (buildkit.dockerfile.v0)

ENV TZ=UTC

2023-03-31 19:46:36 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.12/10d87f90261194270bb05b64c66adf23aae65dc6/package_aarch64 VERSION=22.12.6.22 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/10d87f90261194270bb05b64c66adf23aae65dc6/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2023-03-31 19:46:36 UTC (buildkit.dockerfile.v0)

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

2023-03-31 19:46:36 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2023-03-31 19:46:36 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.12/10d87f90261194270bb05b64c66adf23aae65dc6/package_aarch64 VERSION=22.12.6.22 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/10d87f90261194270bb05b64c66adf23aae65dc6/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c chmod +x /entrypoint.sh # buildkit

2023-03-31 19:46:36 UTC (buildkit.dockerfile.v0)

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

2023-03-31 19:46:36 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse]

2023-03-31 19:46:36 UTC (buildkit.dockerfile.v0)

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

2023-03-31 19:46: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