Namespace
clickhouse
Image / Tag
clickhouse-server:22.10.7.13
Content Digest
sha256:b5ed43a77e06bcf56a925fa362336e5f1d6ce1910dc2a25c82b80dd99129c0eb
Details
Created

2023-01-25 23:25:15 UTC

Size

306 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/4010818052
  • com.clickhouse.build.githash
    d261d9036cc5cb4461315ed299108f76991cf822

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:846c0b181fff0c667d9444f8378e8fcfa13116da8d308bf21673f7e4bea8d580 - 8.91% (27.3 MB)

[#001] sha256:7332a500e70ec65d23ff3f809307936722a792b2328e4ab59850ca2467c5ceca - 13.41% (41 MB)

[#002] sha256:e8fbfec412af21a3f91e8c9bb33f68ca33911f4cd8823ef8e504a417ab382f7b - 77.41% (237 MB)

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

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

[#005] sha256:ab9147d9a6e6d8126e4676bcb3197eac85bba5d4c83fe3a8ea0aad4f54c060ec - 0.0% (370 Bytes)

[#006] sha256:f5d8d21a0425fb61ad9faf2683f9f474690e3ffddd1d90649c80627a056bbb96 - 0.0% (2.45 KB)

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


History
2022-12-09 01:20:21 UTC

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

2022-12-09 01:20:21 UTC

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

2023-01-25 14:37:52 UTC (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2023-01-25 14:37:52 UTC (buildkit.dockerfile.v0)

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

2023-01-25 14:37:52 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-01-25 14:37:52 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2023-01-25 14:37:52 UTC (buildkit.dockerfile.v0)

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

2023-01-25 14:37:52 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.9.3.18

2023-01-25 14:37:52 UTC (buildkit.dockerfile.v0)

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

2023-01-25 14:37:52 UTC (buildkit.dockerfile.v0)

ARG deb_location_url=

2023-01-25 14:37:52 UTC (buildkit.dockerfile.v0)

ARG single_binary_location_url=

2023-01-25 14:37:52 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-01-25 23:25:13 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.10/d261d9036cc5cb4461315ed299108f76991cf822/package_release VERSION=22.10.7.13 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.10/d261d9036cc5cb4461315ed299108f76991cf822/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-01-25 23:25: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.10/d261d9036cc5cb4461315ed299108f76991cf822/package_release VERSION=22.10.7.13 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.10/d261d9036cc5cb4461315ed299108f76991cf822/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit

2023-01-25 23:25:15 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8

2023-01-25 23:25:15 UTC (buildkit.dockerfile.v0)

ENV LANGUAGE=en_US:en

2023-01-25 23:25:15 UTC (buildkit.dockerfile.v0)

ENV LC_ALL=en_US.UTF-8

2023-01-25 23:25:15 UTC (buildkit.dockerfile.v0)

ENV TZ=UTC

2023-01-25 23:25: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.10/d261d9036cc5cb4461315ed299108f76991cf822/package_release VERSION=22.10.7.13 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.10/d261d9036cc5cb4461315ed299108f76991cf822/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2023-01-25 23:25:15 UTC (buildkit.dockerfile.v0)

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

2023-01-25 23:25:15 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2023-01-25 23:25: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.10/d261d9036cc5cb4461315ed299108f76991cf822/package_release VERSION=22.10.7.13 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.10/d261d9036cc5cb4461315ed299108f76991cf822/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c chmod +x /entrypoint.sh # buildkit

2023-01-25 23:25:15 UTC (buildkit.dockerfile.v0)

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

2023-01-25 23:25:15 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse]

2023-01-25 23:25:15 UTC (buildkit.dockerfile.v0)

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

2023-01-25 23:25:15 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/entrypoint.sh"]

Details
Created

2023-01-25 23:26:28 UTC

Size

227 MB

Content Digest
Labels
  • build-url
    https://github.com/ClickHouse/ClickHouse/actions/runs/4010818052
  • com.clickhouse.build.githash
    d261d9036cc5cb4461315ed299108f76991cf822

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:f04b4bbe15805316c8fda79beedd3b77e6b1ffcd0acf81226c3089e63f6bffeb - 11.42% (25.9 MB)

[#001] sha256:1d8490c37671ad8e0d89176e5a550c33282e8d7d6f4f61239faeeadd9e7260b4 - 15.27% (34.7 MB)

[#002] sha256:5c1daddceb1e6d0a0eaa21a09c5264f1f0d205ff4a25bb0c20c53113cd3decd0 - 72.95% (166 MB)

[#003] sha256:dd63b1e31b21519d758f475031d2c60dbc5af8a34f83fbd6a62c62b435aa1cdd - 0.36% (843 KB)

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

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

[#006] sha256:f5d8d21a0425fb61ad9faf2683f9f474690e3ffddd1d90649c80627a056bbb96 - 0.0% (2.45 KB)

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


History
2022-12-09 01:46:50 UTC

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

2022-12-09 01:46:50 UTC

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

2023-01-25 14:41:14 UTC (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2023-01-25 14:41:14 UTC (buildkit.dockerfile.v0)

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

2023-01-25 14:41:14 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-01-25 14:41:14 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2023-01-25 14:41:14 UTC (buildkit.dockerfile.v0)

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

2023-01-25 14:41:14 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.9.3.18

2023-01-25 14:41:14 UTC (buildkit.dockerfile.v0)

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

2023-01-25 14:41:14 UTC (buildkit.dockerfile.v0)

ARG deb_location_url=

2023-01-25 14:41:14 UTC (buildkit.dockerfile.v0)

ARG single_binary_location_url=

2023-01-25 14:41:14 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-01-25 23:26: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.10/d261d9036cc5cb4461315ed299108f76991cf822/package_aarch64 VERSION=22.10.7.13 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.10/d261d9036cc5cb4461315ed299108f76991cf822/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-01-25 23:26:28 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.10/d261d9036cc5cb4461315ed299108f76991cf822/package_aarch64 VERSION=22.10.7.13 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.10/d261d9036cc5cb4461315ed299108f76991cf822/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit

2023-01-25 23:26:28 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8

2023-01-25 23:26:28 UTC (buildkit.dockerfile.v0)

ENV LANGUAGE=en_US:en

2023-01-25 23:26:28 UTC (buildkit.dockerfile.v0)

ENV LC_ALL=en_US.UTF-8

2023-01-25 23:26:28 UTC (buildkit.dockerfile.v0)

ENV TZ=UTC

2023-01-25 23:26:28 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.10/d261d9036cc5cb4461315ed299108f76991cf822/package_aarch64 VERSION=22.10.7.13 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.10/d261d9036cc5cb4461315ed299108f76991cf822/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2023-01-25 23:26:28 UTC (buildkit.dockerfile.v0)

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

2023-01-25 23:26:28 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2023-01-25 23:26:28 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.10/d261d9036cc5cb4461315ed299108f76991cf822/package_aarch64 VERSION=22.10.7.13 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.10/d261d9036cc5cb4461315ed299108f76991cf822/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c chmod +x /entrypoint.sh # buildkit

2023-01-25 23:26:28 UTC (buildkit.dockerfile.v0)

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

2023-01-25 23:26:28 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse]

2023-01-25 23:26:28 UTC (buildkit.dockerfile.v0)

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

2023-01-25 23:26:28 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