Namespace
clickhouse
Image / Tag
clickhouse-server:22.8.6
Content Digest
sha256:bc1882f75c18ace45fb5d398f8fc5dfa7c155a5693d71cabc43518f601900b6b
Details
Created

2022-09-29 23:28:21 UTC

Size

304 MB

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

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:675920708c8bf10fbd02693dc8f43ee7dbe0a99cdfd55e06e6f1a8b43fd08e3f - 8.96% (27.2 MB)

[#001] sha256:44ea435802359ec2d10bbf8624411c741ea9a1b6b2dbac5fa43844cfa2cb5ebf - 13.02% (39.6 MB)

[#002] sha256:a7f435f018d1f511b6b4d783f5a3479ce22ac52e2f275e7e39a38cefe9a65db3 - 77.75% (237 MB)

[#003] sha256:ed660b3d1fdf0d7d5ab9d9224e52c5baa9ea253892634b74026829887a1d0f84 - 0.27% (843 KB)

[#004] sha256:853302031c60e73d79bbd249e9114df2b1b365d72d017e713f448528cdeddfab - 0.0% (122 Bytes)

[#005] sha256:ef0fb3a92344da1740e008dba2b3f5c362c0f9d045b6f4ca97e5e79e88a68e5d - 0.0% (371 Bytes)

[#006] sha256:70ad61082227bbc47ef0727c13a13194509928e44d00347a0c400ea0bbebd0b9 - 0.0% (2.41 KB)

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


History
2022-09-01 23:46:26 UTC

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

2022-09-01 23:46:27 UTC

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

2022-09-29 23:28:03 UTC (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2022-09-29 23:28:03 UTC (buildkit.dockerfile.v0)

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

2022-09-29 23:28:03 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

2022-09-29 23:28:03 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2022-09-29 23:28:03 UTC (buildkit.dockerfile.v0)

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

2022-09-29 23:28:03 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.8.5.29

2022-09-29 23:28:03 UTC (buildkit.dockerfile.v0)

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

2022-09-29 23:28:03 UTC (buildkit.dockerfile.v0)

ARG deb_location_url=

2022-09-29 23:28:03 UTC (buildkit.dockerfile.v0)

ARG single_binary_location_url=

2022-09-29 23:28:03 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2022-09-29 23:28:18 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.8/7bf38a43e304b6efb95c21c8b92471566b26025b/package_release VERSION=22.8.6.71 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/7bf38a43e304b6efb95c21c8b92471566b26025b/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

2022-09-29 23:28:21 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.8/7bf38a43e304b6efb95c21c8b92471566b26025b/package_release VERSION=22.8.6.71 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/7bf38a43e304b6efb95c21c8b92471566b26025b/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit

2022-09-29 23:28:21 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8

2022-09-29 23:28:21 UTC (buildkit.dockerfile.v0)

ENV LANGUAGE=en_US:en

2022-09-29 23:28:21 UTC (buildkit.dockerfile.v0)

ENV LC_ALL=en_US.UTF-8

2022-09-29 23:28:21 UTC (buildkit.dockerfile.v0)

ENV TZ=UTC

2022-09-29 23:28:21 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.8/7bf38a43e304b6efb95c21c8b92471566b26025b/package_release VERSION=22.8.6.71 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/7bf38a43e304b6efb95c21c8b92471566b26025b/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2022-09-29 23:28:21 UTC (buildkit.dockerfile.v0)

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

2022-09-29 23:28:21 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2022-09-29 23:28:21 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.8/7bf38a43e304b6efb95c21c8b92471566b26025b/package_release VERSION=22.8.6.71 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/7bf38a43e304b6efb95c21c8b92471566b26025b/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c chmod +x /entrypoint.sh # buildkit

2022-09-29 23:28:21 UTC (buildkit.dockerfile.v0)

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

2022-09-29 23:28:21 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse]

2022-09-29 23:28:21 UTC (buildkit.dockerfile.v0)

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

2022-09-29 23:28:21 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/entrypoint.sh"]

Details
Created

2022-09-29 23:32:03 UTC

Size

225 MB

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

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:7a9f619ee5e9c87f19eed59abef41d53eb0694f492da010ee069ff26e7b4ff3f - 11.52% (25.9 MB)

[#001] sha256:0caecff37eb2c8b8b33ca6a051d2dbab607cad09dcc55358716f325e717692f8 - 15.14% (34.1 MB)

[#002] sha256:65b5212d3f7b27a0ce5431f19cd759f520cab2cc3cf89aa6c8e2b32292a6267f - 72.98% (164 MB)

[#003] sha256:901d9b7650a71bb207215713b9285f09a77e07b1741114dc8323c1844e904527 - 0.37% (843 KB)

[#004] sha256:f0acf40586c590f3838cdd01347937601a0889b8e1ba4885a0e708a96427bb73 - 0.0% (122 Bytes)

[#005] sha256:75205e3370315144838fb18c11fe2f1e660755ae385e48d4c127969f9ffd267f - 0.0% (374 Bytes)

[#006] sha256:70ad61082227bbc47ef0727c13a13194509928e44d00347a0c400ea0bbebd0b9 - 0.0% (2.41 KB)

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


History
2022-09-02 00:57:42 UTC

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

2022-09-02 00:57:43 UTC

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

2022-09-29 23:31:19 UTC (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2022-09-29 23:31:19 UTC (buildkit.dockerfile.v0)

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

2022-09-29 23:31:19 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

2022-09-29 23:31:19 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2022-09-29 23:31:19 UTC (buildkit.dockerfile.v0)

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

2022-09-29 23:31:19 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.8.5.29

2022-09-29 23:31:19 UTC (buildkit.dockerfile.v0)

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

2022-09-29 23:31:19 UTC (buildkit.dockerfile.v0)

ARG deb_location_url=

2022-09-29 23:31:19 UTC (buildkit.dockerfile.v0)

ARG single_binary_location_url=

2022-09-29 23:31:19 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2022-09-29 23:31: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.8/7bf38a43e304b6efb95c21c8b92471566b26025b/package_aarch64 VERSION=22.8.6.71 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/7bf38a43e304b6efb95c21c8b92471566b26025b/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

2022-09-29 23:32:03 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.8/7bf38a43e304b6efb95c21c8b92471566b26025b/package_aarch64 VERSION=22.8.6.71 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/7bf38a43e304b6efb95c21c8b92471566b26025b/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit

2022-09-29 23:32:03 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8

2022-09-29 23:32:03 UTC (buildkit.dockerfile.v0)

ENV LANGUAGE=en_US:en

2022-09-29 23:32:03 UTC (buildkit.dockerfile.v0)

ENV LC_ALL=en_US.UTF-8

2022-09-29 23:32:03 UTC (buildkit.dockerfile.v0)

ENV TZ=UTC

2022-09-29 23:32:03 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.8/7bf38a43e304b6efb95c21c8b92471566b26025b/package_aarch64 VERSION=22.8.6.71 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/7bf38a43e304b6efb95c21c8b92471566b26025b/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2022-09-29 23:32:03 UTC (buildkit.dockerfile.v0)

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

2022-09-29 23:32:03 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2022-09-29 23:32:03 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.8/7bf38a43e304b6efb95c21c8b92471566b26025b/package_aarch64 VERSION=22.8.6.71 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/7bf38a43e304b6efb95c21c8b92471566b26025b/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c chmod +x /entrypoint.sh # buildkit

2022-09-29 23:32:03 UTC (buildkit.dockerfile.v0)

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

2022-09-29 23:32:03 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse]

2022-09-29 23:32:03 UTC (buildkit.dockerfile.v0)

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

2022-09-29 23:32:03 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