Namespace
clickhouse
Image / Tag
clickhouse-server:22.4.4
Content Digest
sha256:042c6ce7b44be067a0f561eddb223d75b0a389886d30f362b152d7689173dc85
Details
Created

2022-04-29 15:21:39 UTC

Size

298 MB

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

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.14% (27.2 MB)

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

[#002] sha256:d7154f0e581c6d7adf771cbacbf4ff0bddbc9dadb88c8287188ee6886632d35d - 12.67% (37.8 MB)

[#003] sha256:07a11ffa06f0e641e8b050f20584a06ead3f20ba88fe261b655599a3d180a930 - 77.92% (232 MB)

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

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

[#006] sha256:3a962e5eabeb498be9e35d788b71641788a2af51ca23d9f7dfc22605a03618f6 - 0.0% (372 Bytes)

[#007] sha256:87349ac9fde83678767e34f2a1bd343fcc00d8ee49b018c058177697ce1adb39 - 0.0% (2.31 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-29 14:49:29 UTC (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2022-04-29 14:49:29 UTC (buildkit.dockerfile.v0)

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

2022-04-29 14:49:29 UTC (buildkit.dockerfile.v0)

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

2022-04-29 14:49:46 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-29 14:49:46 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2022-04-29 14:49:46 UTC (buildkit.dockerfile.v0)

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

2022-04-29 14:49:46 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.1.1.*

2022-04-29 14:49:46 UTC (buildkit.dockerfile.v0)

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

2022-04-29 14:49:46 UTC (buildkit.dockerfile.v0)

ARG deb_location_url=

2022-04-29 14:49:46 UTC (buildkit.dockerfile.v0)

ARG single_binary_location_url=

2022-04-29 14:49:46 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2022-04-29 15:21:37 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.4/ba44414f9b3e1b28277b2b33854023b226352c3c/package_release VERSION=22.4.4.7 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.4/ba44414f9b3e1b28277b2b33854023b226352c3c/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-04-29 15:21:39 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.4/ba44414f9b3e1b28277b2b33854023b226352c3c/package_release VERSION=22.4.4.7 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.4/ba44414f9b3e1b28277b2b33854023b226352c3c/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit

2022-04-29 15:21:39 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8

2022-04-29 15:21:39 UTC (buildkit.dockerfile.v0)

ENV LANGUAGE=en_US:en

2022-04-29 15:21:39 UTC (buildkit.dockerfile.v0)

ENV LC_ALL=en_US.UTF-8

2022-04-29 15:21:39 UTC (buildkit.dockerfile.v0)

ENV TZ=UTC

2022-04-29 15:21:39 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.4/ba44414f9b3e1b28277b2b33854023b226352c3c/package_release VERSION=22.4.4.7 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.4/ba44414f9b3e1b28277b2b33854023b226352c3c/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2022-04-29 15:21:39 UTC (buildkit.dockerfile.v0)

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

2022-04-29 15:21:39 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2022-04-29 15:21:39 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.4/ba44414f9b3e1b28277b2b33854023b226352c3c/package_release VERSION=22.4.4.7 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.4/ba44414f9b3e1b28277b2b33854023b226352c3c/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c chmod +x /entrypoint.sh # buildkit

2022-04-29 15:21:39 UTC (buildkit.dockerfile.v0)

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

2022-04-29 15:21:39 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse]

2022-04-29 15:21:39 UTC (buildkit.dockerfile.v0)

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

2022-04-29 15:21:39 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/entrypoint.sh"]

Details
Created

2022-04-29 15:23:05 UTC

Size

222 MB

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

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.66% (25.9 MB)

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

[#002] sha256:fe4c247d0684a74779cdb0433b0c6c596528553d3a4f7ff355804588b213b1a1 - 14.98% (33.3 MB)

[#003] sha256:cafe485b386166a116bcc733b8fee1aa2296d05eda87a088eaa2d1952b932e91 - 72.98% (162 MB)

[#004] sha256:cc8ddda8068e3f35d950a1b5420bfdba315f39f0c3c62facb9276a96a8c6e2fd - 0.37% (843 KB)

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

[#006] sha256:bfcb99aa1c4e08de0914ed6308b32894f7b642fd96bcd454f708e8f580274cb6 - 0.0% (372 Bytes)

[#007] sha256:87349ac9fde83678767e34f2a1bd343fcc00d8ee49b018c058177697ce1adb39 - 0.0% (2.31 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-29 14:50:55 UTC (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2022-04-29 14:50:55 UTC (buildkit.dockerfile.v0)

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

2022-04-29 14:50:55 UTC (buildkit.dockerfile.v0)

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

2022-04-29 14:53:11 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-29 14:53:11 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2022-04-29 14:53:11 UTC (buildkit.dockerfile.v0)

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

2022-04-29 14:53:11 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.1.1.*

2022-04-29 14:53:11 UTC (buildkit.dockerfile.v0)

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

2022-04-29 14:53:11 UTC (buildkit.dockerfile.v0)

ARG deb_location_url=

2022-04-29 14:53:11 UTC (buildkit.dockerfile.v0)

ARG single_binary_location_url=

2022-04-29 14:53:11 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2022-04-29 15:22:56 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.4/ba44414f9b3e1b28277b2b33854023b226352c3c/package_aarch64 VERSION=22.4.4.7 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.4/ba44414f9b3e1b28277b2b33854023b226352c3c/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-04-29 15:23:05 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.4/ba44414f9b3e1b28277b2b33854023b226352c3c/package_aarch64 VERSION=22.4.4.7 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.4/ba44414f9b3e1b28277b2b33854023b226352c3c/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit

2022-04-29 15:23:05 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8

2022-04-29 15:23:05 UTC (buildkit.dockerfile.v0)

ENV LANGUAGE=en_US:en

2022-04-29 15:23:05 UTC (buildkit.dockerfile.v0)

ENV LC_ALL=en_US.UTF-8

2022-04-29 15:23:05 UTC (buildkit.dockerfile.v0)

ENV TZ=UTC

2022-04-29 15:23:05 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.4/ba44414f9b3e1b28277b2b33854023b226352c3c/package_aarch64 VERSION=22.4.4.7 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.4/ba44414f9b3e1b28277b2b33854023b226352c3c/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2022-04-29 15:23:05 UTC (buildkit.dockerfile.v0)

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

2022-04-29 15:23:05 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2022-04-29 15:23:05 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.4/ba44414f9b3e1b28277b2b33854023b226352c3c/package_aarch64 VERSION=22.4.4.7 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.4/ba44414f9b3e1b28277b2b33854023b226352c3c/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c chmod +x /entrypoint.sh # buildkit

2022-04-29 15:23:05 UTC (buildkit.dockerfile.v0)

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

2022-04-29 15:23:05 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse]

2022-04-29 15:23:05 UTC (buildkit.dockerfile.v0)

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

2022-04-29 15:23:05 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