Namespace
clickhouse
Image / Tag
clickhouse-server:22.3.9
Content Digest
sha256:e03069ce15634dcd1018cdc7ca62a25a834d963a0f24782ef8f9a268d8c7f5c0
Details
Created

2022-07-25 19:12:32 UTC

Size

295 MB

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

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

[#001] sha256:6a1f899f790ce469750837a2e249124cfb3ed7b71cc56b8566fda576603b4653 - 0.0% (1.57 KB)

[#002] sha256:28280b48f58e93eaa702a76068bc97f343f1f25bf9acbabf4b3197fc32b54709 - 13.28% (39.2 MB)

[#003] sha256:a3ceb42f3259fc8a670f5c8a3cc59e90ea70921e07c10dd918060e6efd7d3bae - 77.19% (228 MB)

[#004] sha256:30823d12a4e633a76b105f3c3acdb5d74b7d311a904425c2201e506b269b5132 - 0.28% (843 KB)

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

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

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

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


History
2022-06-06 22:21:11 UTC

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

2022-06-06 22:21:12 UTC

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

2022-07-25 17:14:47 UTC (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2022-07-25 17:14:47 UTC (buildkit.dockerfile.v0)

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

2022-07-25 17:14:47 UTC (buildkit.dockerfile.v0)

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

2022-07-25 19:12:13 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-07-25 19:12:13 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2022-07-25 19:12:13 UTC (buildkit.dockerfile.v0)

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

2022-07-25 19:12:13 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.1.1.*

2022-07-25 19:12:13 UTC (buildkit.dockerfile.v0)

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

2022-07-25 19:12:13 UTC (buildkit.dockerfile.v0)

ARG deb_location_url=

2022-07-25 19:12:13 UTC (buildkit.dockerfile.v0)

ARG single_binary_location_url=

2022-07-25 19:12:13 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2022-07-25 19:12:29 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/7976930b82eed26e8728897d530e044774e0cded/package_release VERSION=22.3.9.19 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/7976930b82eed26e8728897d530e044774e0cded/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-07-25 19:12:31 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/7976930b82eed26e8728897d530e044774e0cded/package_release VERSION=22.3.9.19 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/7976930b82eed26e8728897d530e044774e0cded/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit

2022-07-25 19:12:31 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8

2022-07-25 19:12:31 UTC (buildkit.dockerfile.v0)

ENV LANGUAGE=en_US:en

2022-07-25 19:12:31 UTC (buildkit.dockerfile.v0)

ENV LC_ALL=en_US.UTF-8

2022-07-25 19:12:31 UTC (buildkit.dockerfile.v0)

ENV TZ=UTC

2022-07-25 19:12:31 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/7976930b82eed26e8728897d530e044774e0cded/package_release VERSION=22.3.9.19 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/7976930b82eed26e8728897d530e044774e0cded/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2022-07-25 19:12:31 UTC (buildkit.dockerfile.v0)

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

2022-07-25 19:12:31 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2022-07-25 19:12: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/7976930b82eed26e8728897d530e044774e0cded/package_release VERSION=22.3.9.19 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/7976930b82eed26e8728897d530e044774e0cded/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c chmod +x /entrypoint.sh # buildkit

2022-07-25 19:12:32 UTC (buildkit.dockerfile.v0)

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

2022-07-25 19:12:32 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse]

2022-07-25 19:12:32 UTC (buildkit.dockerfile.v0)

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

2022-07-25 19:12:32 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/entrypoint.sh"]

Details
Created

2022-07-25 19:16:25 UTC

Size

219 MB

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

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

[#001] sha256:6a1f899f790ce469750837a2e249124cfb3ed7b71cc56b8566fda576603b4653 - 0.0% (1.57 KB)

[#002] sha256:eeebfd959d1d53023768fc12d4cae1e779bc1f9f7819e716ee108fd692febd94 - 15.55% (34 MB)

[#003] sha256:f4618d766e296d0998ed59686f39506ff7f79dfb239953261fe7df1980327c97 - 72.2% (158 MB)

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

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

[#006] sha256:9946202625d335f9887eaff36127037e0472729ec4eb50ee1c71d0ae1abafa9b - 0.0% (374 Bytes)

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

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


History
2022-06-07 01:25:15 UTC

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

2022-06-07 01:25:16 UTC

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

2022-07-25 17:15:29 UTC (buildkit.dockerfile.v0)

ARG DEBIAN_FRONTEND=noninteractive

2022-07-25 17:15:29 UTC (buildkit.dockerfile.v0)

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

2022-07-25 17:15:29 UTC (buildkit.dockerfile.v0)

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

2022-07-25 19:15:42 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-07-25 19:15:42 UTC (buildkit.dockerfile.v0)

ARG REPO_CHANNEL=stable

2022-07-25 19:15:42 UTC (buildkit.dockerfile.v0)

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

2022-07-25 19:15:42 UTC (buildkit.dockerfile.v0)

ARG VERSION=22.1.1.*

2022-07-25 19:15:42 UTC (buildkit.dockerfile.v0)

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

2022-07-25 19:15:42 UTC (buildkit.dockerfile.v0)

ARG deb_location_url=

2022-07-25 19:15:42 UTC (buildkit.dockerfile.v0)

ARG single_binary_location_url=

2022-07-25 19:15:42 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2022-07-25 19:16: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.3/7976930b82eed26e8728897d530e044774e0cded/package_aarch64 VERSION=22.3.9.19 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/7976930b82eed26e8728897d530e044774e0cded/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-07-25 19:16:25 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/7976930b82eed26e8728897d530e044774e0cded/package_aarch64 VERSION=22.3.9.19 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/7976930b82eed26e8728897d530e044774e0cded/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit

2022-07-25 19:16:25 UTC (buildkit.dockerfile.v0)

ENV LANG=en_US.UTF-8

2022-07-25 19:16:25 UTC (buildkit.dockerfile.v0)

ENV LANGUAGE=en_US:en

2022-07-25 19:16:25 UTC (buildkit.dockerfile.v0)

ENV LC_ALL=en_US.UTF-8

2022-07-25 19:16:25 UTC (buildkit.dockerfile.v0)

ENV TZ=UTC

2022-07-25 19:16:25 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/7976930b82eed26e8728897d530e044774e0cded/package_aarch64 VERSION=22.3.9.19 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/7976930b82eed26e8728897d530e044774e0cded/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit

2022-07-25 19:16:25 UTC (buildkit.dockerfile.v0)

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

2022-07-25 19:16:25 UTC (buildkit.dockerfile.v0)

COPY entrypoint.sh /entrypoint.sh # buildkit

2022-07-25 19:16:25 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/7976930b82eed26e8728897d530e044774e0cded/package_aarch64 VERSION=22.3.9.19 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.3/7976930b82eed26e8728897d530e044774e0cded/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c chmod +x /entrypoint.sh # buildkit

2022-07-25 19:16:25 UTC (buildkit.dockerfile.v0)

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

2022-07-25 19:16:25 UTC (buildkit.dockerfile.v0)

VOLUME [/var/lib/clickhouse]

2022-07-25 19:16:25 UTC (buildkit.dockerfile.v0)

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

2022-07-25 19:16:25 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