Namespace
clickhouse
Image / Tag
clickhouse-server:22.8.8
Content Digest
sha256:454fc1a54e0a0604c817aa47a569cc4a08daa70abadfd20b138b2a8f44f2cc16
Details
Created

2022-10-27 09:57:05 UTC

Size

305 MB

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

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:eaead16dc43bb8811d4ff450935d607f9ba4baffda4fc110cc402fa43f601d83 - 8.94% (27.3 MB)

[#001] sha256:af6c287ba3931d8c6f9131427b1775b1734d3a56965bb0ecffcf2bd2f6453d45 - 13.14% (40.1 MB)

[#002] sha256:6badcb147f7bef6effeee2f57266df8fa4570a59449ab987ae3bf9ab39fc5d2d - 77.65% (237 MB)

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

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

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

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

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


History
2022-10-25 01:53:34 UTC

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

2022-10-25 01:53:35 UTC

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

2022-10-27 09:56:47 UTC (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2022-10-27 09:56:47 UTC (buildkit.dockerfile.v0)

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

2022-10-27 09:56:47 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-10-27 09:56:47 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2022-10-27 09:56:47 UTC (buildkit.dockerfile.v0)

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

2022-10-27 09:56:47 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.8.5.29

2022-10-27 09:56:47 UTC (buildkit.dockerfile.v0)

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

2022-10-27 09:56:47 UTC (buildkit.dockerfile.v0)

ARG deb_location_url=

2022-10-27 09:56:47 UTC (buildkit.dockerfile.v0)

ARG single_binary_location_url=

2022-10-27 09:56:47 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2022-10-27 09:57: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/ac5a6cababc9153320b1892eece62e1468058c26/package_release VERSION=22.8.8.3 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/ac5a6cababc9153320b1892eece62e1468058c26/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-10-27 09:57: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.8/ac5a6cababc9153320b1892eece62e1468058c26/package_release VERSION=22.8.8.3 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/ac5a6cababc9153320b1892eece62e1468058c26/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit

2022-10-27 09:57:05 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8

2022-10-27 09:57:05 UTC (buildkit.dockerfile.v0)

ENV LANGUAGE=en_US:en

2022-10-27 09:57:05 UTC (buildkit.dockerfile.v0)

ENV LC_ALL=en_US.UTF-8

2022-10-27 09:57:05 UTC (buildkit.dockerfile.v0)

ENV TZ=UTC

2022-10-27 09:57: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.8/ac5a6cababc9153320b1892eece62e1468058c26/package_release VERSION=22.8.8.3 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/ac5a6cababc9153320b1892eece62e1468058c26/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2022-10-27 09:57:05 UTC (buildkit.dockerfile.v0)

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

2022-10-27 09:57:05 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2022-10-27 09:57: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.8/ac5a6cababc9153320b1892eece62e1468058c26/package_release VERSION=22.8.8.3 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/ac5a6cababc9153320b1892eece62e1468058c26/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c chmod +x /entrypoint.sh # buildkit

2022-10-27 09:57:05 UTC (buildkit.dockerfile.v0)

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

2022-10-27 09:57:05 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse]

2022-10-27 09:57:05 UTC (buildkit.dockerfile.v0)

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

2022-10-27 09:57:05 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/entrypoint.sh"]

Details
Created

2022-10-27 10:01:03 UTC

Size

225 MB

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

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:4e7e0215f4adc2c48ad9cb3b3781e21d474b477587f85682c2e2975ae91dce9d - 11.5% (25.9 MB)

[#001] sha256:56996f09297506d36c0d6a920c4a5c988f28b68a228ad6ce8fb4c5e79e29714e - 15.2% (34.3 MB)

[#002] sha256:04566d6d88aba36d32c0e2fc97c4480e19e3d29a39b069422b5b8fde0d82767f - 72.94% (164 MB)

[#003] sha256:725052ad37a89c1973553f723f2ca9c83874223cea1f896a22b6a5bccac54635 - 0.37% (843 KB)

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

[#005] sha256:19dd29bc8a7880c62694c7aed6ea25026617dd55a44259405ca928fa9a88af0a - 0.0% (375 Bytes)

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

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


History
2022-10-25 05:54:59 UTC

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

2022-10-25 05:54:59 UTC

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

2022-10-27 10:00:17 UTC (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2022-10-27 10:00:17 UTC (buildkit.dockerfile.v0)

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

2022-10-27 10:00:17 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-10-27 10:00:17 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2022-10-27 10:00:17 UTC (buildkit.dockerfile.v0)

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

2022-10-27 10:00:17 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.8.5.29

2022-10-27 10:00:17 UTC (buildkit.dockerfile.v0)

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

2022-10-27 10:00:17 UTC (buildkit.dockerfile.v0)

ARG deb_location_url=

2022-10-27 10:00:17 UTC (buildkit.dockerfile.v0)

ARG single_binary_location_url=

2022-10-27 10:00:17 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2022-10-27 10:00:52 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/ac5a6cababc9153320b1892eece62e1468058c26/package_aarch64 VERSION=22.8.8.3 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/ac5a6cababc9153320b1892eece62e1468058c26/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-10-27 10:01: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/ac5a6cababc9153320b1892eece62e1468058c26/package_aarch64 VERSION=22.8.8.3 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/ac5a6cababc9153320b1892eece62e1468058c26/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit

2022-10-27 10:01:03 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8

2022-10-27 10:01:03 UTC (buildkit.dockerfile.v0)

ENV LANGUAGE=en_US:en

2022-10-27 10:01:03 UTC (buildkit.dockerfile.v0)

ENV LC_ALL=en_US.UTF-8

2022-10-27 10:01:03 UTC (buildkit.dockerfile.v0)

ENV TZ=UTC

2022-10-27 10:01: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/ac5a6cababc9153320b1892eece62e1468058c26/package_aarch64 VERSION=22.8.8.3 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/ac5a6cababc9153320b1892eece62e1468058c26/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2022-10-27 10:01:03 UTC (buildkit.dockerfile.v0)

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

2022-10-27 10:01:03 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2022-10-27 10:01: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/ac5a6cababc9153320b1892eece62e1468058c26/package_aarch64 VERSION=22.8.8.3 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.8/ac5a6cababc9153320b1892eece62e1468058c26/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c chmod +x /entrypoint.sh # buildkit

2022-10-27 10:01:03 UTC (buildkit.dockerfile.v0)

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

2022-10-27 10:01:03 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse]

2022-10-27 10:01:03 UTC (buildkit.dockerfile.v0)

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

2022-10-27 10:01: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