Namespace
clickhouse
Image / Tag
clickhouse-server:22.3.12.19
Content Digest
sha256:5f6868e3f50f3ec7ff231cb86dedd56186b706bb6d208f8aea24044176c9bf9a
Details
Created

2022-08-29 14:50:55 UTC

Size

295 MB

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

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:3b65ec22a9e96affe680712973e88355927506aa3f792ff03330f3a3eb601a98 - 9.24% (27.2 MB)

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

[#002] sha256:e3c8178dc05121dd870eb5a88190f9800ee3f29ca8df7fc097dae61f986be7fd - 13.31% (39.3 MB)

[#003] sha256:1fdc6d3825c9bf75f665a0ebc327853aadf0b89f31fda5ccf0b38f628c46ed26 - 77.16% (228 MB)

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

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

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

[#007] sha256:4c5f9b0f2cc11af5c83995e8d970432295719082e1d705b599f4ab2660362d80 - 0.0% (2.32 KB)

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


History
2022-08-02 01:30:49 UTC

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

2022-08-02 01:30:49 UTC

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

2022-08-29 14:34:12 UTC (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2022-08-29 14:34:12 UTC (buildkit.dockerfile.v0)

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

2022-08-29 14:34:12 UTC (buildkit.dockerfile.v0)

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

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

ARG REPO_CHANNEL=stable

2022-08-29 14:46:10 UTC (buildkit.dockerfile.v0)

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

2022-08-29 14:46:10 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.1.1.*

2022-08-29 14:46:10 UTC (buildkit.dockerfile.v0)

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

2022-08-29 14:46:10 UTC (buildkit.dockerfile.v0)

ARG deb_location_url=

2022-08-29 14:46:10 UTC (buildkit.dockerfile.v0)

ARG single_binary_location_url=

2022-08-29 14:46:10 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2022-08-29 14:50:53 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/4a08f8a073b757f5e7075d960a43f8709f9abd40/package_release VERSION=22.3.12.19 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/4a08f8a073b757f5e7075d960a43f8709f9abd40/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-08-29 14:50:55 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/4a08f8a073b757f5e7075d960a43f8709f9abd40/package_release VERSION=22.3.12.19 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/4a08f8a073b757f5e7075d960a43f8709f9abd40/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit

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

ENV LANG=en_US.UTF-8

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

ENV LANGUAGE=en_US:en

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

ENV LC_ALL=en_US.UTF-8

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

ENV TZ=UTC

2022-08-29 14:50:55 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/4a08f8a073b757f5e7075d960a43f8709f9abd40/package_release VERSION=22.3.12.19 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/4a08f8a073b757f5e7075d960a43f8709f9abd40/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

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

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

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

COPY entrypoint.sh /entrypoint.sh # buildkit

2022-08-29 14:50:55 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/4a08f8a073b757f5e7075d960a43f8709f9abd40/package_release VERSION=22.3.12.19 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/4a08f8a073b757f5e7075d960a43f8709f9abd40/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c chmod +x /entrypoint.sh # buildkit

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

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

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

VOLUME [/var/lib/clickhouse]

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

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

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

ENTRYPOINT ["/entrypoint.sh"]

Details
Created

2022-08-29 14:54:42 UTC

Size

218 MB

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

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:a749a280e3e905de447c3d95a39e8aa1ede5835a6eadeb0c11596051592b675b - 11.87% (25.9 MB)

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

[#002] sha256:695d44497f9985027bda94a59197c044d32a5d97d9fbda408b4c6c09c259a8f0 - 15.53% (33.9 MB)

[#003] sha256:05078fa6514c968164e83f30e19e1ed420020ac3ff69359ee7b7c35c89fad322 - 72.22% (158 MB)

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

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

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

[#007] sha256:4c5f9b0f2cc11af5c83995e8d970432295719082e1d705b599f4ab2660362d80 - 0.0% (2.32 KB)

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


History
2022-08-02 01:18:51 UTC

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

2022-08-02 01:18:51 UTC

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

2022-08-29 14:47:06 UTC (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2022-08-29 14:47:06 UTC (buildkit.dockerfile.v0)

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

2022-08-29 14:47:06 UTC (buildkit.dockerfile.v0)

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

2022-08-29 14:54:01 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-08-29 14:54:01 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2022-08-29 14:54:01 UTC (buildkit.dockerfile.v0)

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

2022-08-29 14:54:01 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.1.1.*

2022-08-29 14:54:01 UTC (buildkit.dockerfile.v0)

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

2022-08-29 14:54:01 UTC (buildkit.dockerfile.v0)

ARG deb_location_url=

2022-08-29 14:54:01 UTC (buildkit.dockerfile.v0)

ARG single_binary_location_url=

2022-08-29 14:54:01 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2022-08-29 14:54:32 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/4a08f8a073b757f5e7075d960a43f8709f9abd40/package_aarch64 VERSION=22.3.12.19 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/4a08f8a073b757f5e7075d960a43f8709f9abd40/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-08-29 14:54: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/4a08f8a073b757f5e7075d960a43f8709f9abd40/package_aarch64 VERSION=22.3.12.19 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/4a08f8a073b757f5e7075d960a43f8709f9abd40/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit

2022-08-29 14:54:42 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8

2022-08-29 14:54:42 UTC (buildkit.dockerfile.v0)

ENV LANGUAGE=en_US:en

2022-08-29 14:54:42 UTC (buildkit.dockerfile.v0)

ENV LC_ALL=en_US.UTF-8

2022-08-29 14:54:42 UTC (buildkit.dockerfile.v0)

ENV TZ=UTC

2022-08-29 14:54: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/4a08f8a073b757f5e7075d960a43f8709f9abd40/package_aarch64 VERSION=22.3.12.19 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/4a08f8a073b757f5e7075d960a43f8709f9abd40/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2022-08-29 14:54:42 UTC (buildkit.dockerfile.v0)

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

2022-08-29 14:54:42 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2022-08-29 14:54: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/4a08f8a073b757f5e7075d960a43f8709f9abd40/package_aarch64 VERSION=22.3.12.19 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/4a08f8a073b757f5e7075d960a43f8709f9abd40/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c chmod +x /entrypoint.sh # buildkit

2022-08-29 14:54:42 UTC (buildkit.dockerfile.v0)

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

2022-08-29 14:54:42 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse]

2022-08-29 14:54:42 UTC (buildkit.dockerfile.v0)

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

2022-08-29 14:54:42 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