Namespace
clickhouse
Image / Tag
clickhouse-server:22.8.14.53
Content Digest
sha256:9bb6763e32da2b9a05c59e1fbddab7c2f4ef68d8d2923ad13ec81d9713da1152
Details
Created

2023-02-27 14:39:15 UTC

Size

305 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/4283513869
  • com.clickhouse.build.githash
    4ea67c4007711a8c67ef4b3518341b1977d4369a
  • 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:b549f31133a955f68f9fa0d93f18436c4a180e12184b999a8ecf14f7eaa83309 - 8.59% (26.2 MB)

[#001] sha256:9446f330822b74a80fa4bf9099445acb143107173ff06c2f3af713b02b5672fd - 13.52% (41.3 MB)

[#002] sha256:38490ce04ff240fac66a3f56356c6ee84131560a81d2b5551581112f3fb42132 - 77.61% (237 MB)

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

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

[#005] sha256:81e956e67b12518676d9ac488797b212add8573bc51cf16d925a7bdfd8d7c3c4 - 0.0% (372 Bytes)

[#006] sha256:0bdbd8bc724a32dad9a12774be4cc97ffe94ebd77bea26695525241fe7575ccf - 0.0% (2.41 KB)

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


History
2023-02-01 11:42:37 UTC

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

2023-02-01 11:42:37 UTC

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

2023-02-01 11:42:37 UTC

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

2023-02-01 11:42:37 UTC

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

2023-02-01 11:42:39 UTC

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

2023-02-01 11:42:39 UTC

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

2023-02-27 05:31:29 UTC (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2023-02-27 05:31:29 UTC (buildkit.dockerfile.v0)

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

2023-02-27 05:31:29 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-02-27 05:31:29 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2023-02-27 05:31:29 UTC (buildkit.dockerfile.v0)

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

2023-02-27 05:31:29 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.8.5.29

2023-02-27 05:31:29 UTC (buildkit.dockerfile.v0)

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

2023-02-27 05:31:29 UTC (buildkit.dockerfile.v0)

ARG deb_location_url=

2023-02-27 05:31:29 UTC (buildkit.dockerfile.v0)

ARG single_binary_location_url=

2023-02-27 05:31:29 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-02-27 14:39:12 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/4ea67c4007711a8c67ef4b3518341b1977d4369a/package_release VERSION=22.8.14.53 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/4ea67c4007711a8c67ef4b3518341b1977d4369a/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-02-27 14:39:14 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/4ea67c4007711a8c67ef4b3518341b1977d4369a/package_release VERSION=22.8.14.53 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/4ea67c4007711a8c67ef4b3518341b1977d4369a/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit

2023-02-27 14:39:14 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8

2023-02-27 14:39:14 UTC (buildkit.dockerfile.v0)

ENV LANGUAGE=en_US:en

2023-02-27 14:39:14 UTC (buildkit.dockerfile.v0)

ENV LC_ALL=en_US.UTF-8

2023-02-27 14:39:14 UTC (buildkit.dockerfile.v0)

ENV TZ=UTC

2023-02-27 14:39:14 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/4ea67c4007711a8c67ef4b3518341b1977d4369a/package_release VERSION=22.8.14.53 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/4ea67c4007711a8c67ef4b3518341b1977d4369a/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2023-02-27 14:39:14 UTC (buildkit.dockerfile.v0)

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

2023-02-27 14:39:14 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2023-02-27 14:39:15 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/4ea67c4007711a8c67ef4b3518341b1977d4369a/package_release VERSION=22.8.14.53 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/4ea67c4007711a8c67ef4b3518341b1977d4369a/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c chmod +x /entrypoint.sh # buildkit

2023-02-27 14:39:15 UTC (buildkit.dockerfile.v0)

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

2023-02-27 14:39:15 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse]

2023-02-27 14:39:15 UTC (buildkit.dockerfile.v0)

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

2023-02-27 14:39:15 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/entrypoint.sh"]

Details
Created

2023-02-27 14:40:34 UTC

Size

225 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/4283513869
  • com.clickhouse.build.githash
    4ea67c4007711a8c67ef4b3518341b1977d4369a
  • 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:455c32d33260eab99dd1b8abd1c2af91801c5a580a50e7a43c60b637a88a2209 - 11.01% (24.8 MB)

[#001] sha256:be9e04e2432f077c968f4aee4c8652bbd77284bc1caa73e31c34beabd59a29ac - 15.46% (34.8 MB)

[#002] sha256:9e891f0e8a822822ae8a67e94f578af68316992fb7161708c13b4146a2100d7b - 73.16% (165 MB)

[#003] sha256:7f27ff6fd12ab0d3b93c72dce855c89b4a8acf87eead3f13629dbee5108490ba - 0.37% (843 KB)

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

[#005] sha256:de912db36bbcdb65890865025161c75ef1e918557ae8d84b41fb415c8deadc0f - 0.0% (369 Bytes)

[#006] sha256:0bdbd8bc724a32dad9a12774be4cc97ffe94ebd77bea26695525241fe7575ccf - 0.0% (2.41 KB)

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


History
2023-02-01 11:27:52 UTC

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

2023-02-01 11:27:52 UTC

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

2023-02-01 11:27:52 UTC

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

2023-02-01 11:27:52 UTC

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

2023-02-01 11:27:56 UTC

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

2023-02-01 11:27:56 UTC

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

2023-02-27 05:34:38 UTC (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2023-02-27 05:34:38 UTC (buildkit.dockerfile.v0)

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

2023-02-27 05:34:38 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-02-27 05:34:38 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2023-02-27 05:34:38 UTC (buildkit.dockerfile.v0)

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

2023-02-27 05:34:38 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.8.5.29

2023-02-27 05:34:38 UTC (buildkit.dockerfile.v0)

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

2023-02-27 05:34:38 UTC (buildkit.dockerfile.v0)

ARG deb_location_url=

2023-02-27 05:34:38 UTC (buildkit.dockerfile.v0)

ARG single_binary_location_url=

2023-02-27 05:34:38 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-02-27 14:40:24 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/4ea67c4007711a8c67ef4b3518341b1977d4369a/package_aarch64 VERSION=22.8.14.53 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/4ea67c4007711a8c67ef4b3518341b1977d4369a/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-02-27 14:40:33 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/4ea67c4007711a8c67ef4b3518341b1977d4369a/package_aarch64 VERSION=22.8.14.53 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/4ea67c4007711a8c67ef4b3518341b1977d4369a/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit

2023-02-27 14:40:33 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8

2023-02-27 14:40:33 UTC (buildkit.dockerfile.v0)

ENV LANGUAGE=en_US:en

2023-02-27 14:40:33 UTC (buildkit.dockerfile.v0)

ENV LC_ALL=en_US.UTF-8

2023-02-27 14:40:33 UTC (buildkit.dockerfile.v0)

ENV TZ=UTC

2023-02-27 14:40:34 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/4ea67c4007711a8c67ef4b3518341b1977d4369a/package_aarch64 VERSION=22.8.14.53 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/4ea67c4007711a8c67ef4b3518341b1977d4369a/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2023-02-27 14:40:34 UTC (buildkit.dockerfile.v0)

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

2023-02-27 14:40:34 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2023-02-27 14:40:34 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/4ea67c4007711a8c67ef4b3518341b1977d4369a/package_aarch64 VERSION=22.8.14.53 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/4ea67c4007711a8c67ef4b3518341b1977d4369a/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c chmod +x /entrypoint.sh # buildkit

2023-02-27 14:40:34 UTC (buildkit.dockerfile.v0)

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

2023-02-27 14:40:34 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse]

2023-02-27 14:40:34 UTC (buildkit.dockerfile.v0)

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

2023-02-27 14:40:34 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