Namespace
clickhouse
Image / Tag
clickhouse-server:21.8
Content Digest
sha256:a9141f199e4b1f60cd6fe5ee58e25a86938117d26a73c4a1fa5c31b6e2f64abf
Details
Created

2022-04-04 16:35:28 UTC

Size

246 MB

Content Digest
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:4d32b49e2995210e8937f0898327f196d3fcc52486f0be920e8b2d65f150a7ab - 11.08% (27.2 MB)

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

[#002] sha256:9eb96f9b4126a7deb0775900e23a477e77a34ecf9266987d6d1fa2d3eee540b8 - 15.29% (37.6 MB)

[#003] sha256:dba2e9b621e1ababbb427fdabf11c0e11aed989dc1e02b022f897ef5d6d3611c - 73.29% (180 MB)

[#004] sha256:0b97c7454e64a5d1af4aa41631c4b19b109f27bcd9ff1533bb235b55d577d9d1 - 0.34% (843 KB)

[#005] sha256:2c226f1df01f0b122444e8a6f502f41ec3c1c2a1293925d4d6f45125cc49cc26 - 0.0% (115 Bytes)

[#006] sha256:bf1c4613475fe230254e60b4b390aa76d9600a1be40733b28d93d4c5ae1a105b - 0.0% (366 Bytes)

[#007] sha256:9858be4f92b915069225b0b99233641be54144fa480f46ab7a28e39462df9509 - 0.0% (2.31 KB)


History
2022-03-18 05:30:40 UTC

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

2022-03-18 05:30:40 UTC

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

2022-04-04 16:31:05 UTC

/bin/sh -c #(nop) ARG DEBIAN_FRONTEND=noninteractive

2022-04-04 16:31:07 UTC

/bin/sh -c #(nop) COPY file:b15a769c462dffe00febf191da8708a46776d4c13bf57353406fc081e8363ea5 in /su-exec.c

2022-04-04 16:31:07 UTC

/bin/sh -c #(nop) ARG apt_archive=http://archive.ubuntu.com

2022-04-04 16:31:22 UTC

|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

2022-04-04 16:31:54 UTC

/bin/sh -c #(nop) ARG REPO_CHANNEL=lts

2022-04-04 16:31:55 UTC

/bin/sh -c #(nop) ARG REPOSITORY=deb https://packages.clickhouse.com/deb lts main

2022-04-04 16:31:56 UTC

/bin/sh -c #(nop) ARG VERSION=21.8.15.7

2022-04-04 16:31:57 UTC

/bin/sh -c #(nop) ARG PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static

2022-04-04 16:31:58 UTC

/bin/sh -c #(nop) ARG deb_location_url=

2022-04-04 16:31:59 UTC

/bin/sh -c #(nop) ARG single_binary_location_url=

2022-04-04 16:32:00 UTC

/bin/sh -c #(nop) ARG TARGETARCH

2022-04-04 16:35:14 UTC

|8 DEBIAN_FRONTEND=noninteractive PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static REPOSITORY=deb https://packages.clickhouse.com/deb lts main REPO_CHANNEL=lts VERSION=21.8.15.7 apt_archive=http://archive.ubuntu.com deb_location_url= single_binary_location_url= /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

2022-04-04 16:35:16 UTC

|8 DEBIAN_FRONTEND=noninteractive PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static REPOSITORY=deb https://packages.clickhouse.com/deb lts main REPO_CHANNEL=lts VERSION=21.8.15.7 apt_archive=http://archive.ubuntu.com deb_location_url= single_binary_location_url= /bin/sh -c locale-gen en_US.UTF-8

2022-04-04 16:35:17 UTC

/bin/sh -c #(nop) ENV LANG=en_US.UTF-8

2022-04-04 16:35:18 UTC

/bin/sh -c #(nop) ENV LANGUAGE=en_US:en

2022-04-04 16:35:19 UTC

/bin/sh -c #(nop) ENV LC_ALL=en_US.UTF-8

2022-04-04 16:35:20 UTC

/bin/sh -c #(nop) ENV TZ=UTC

2022-04-04 16:35:21 UTC

|8 DEBIAN_FRONTEND=noninteractive PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static REPOSITORY=deb https://packages.clickhouse.com/deb lts main REPO_CHANNEL=lts VERSION=21.8.15.7 apt_archive=http://archive.ubuntu.com deb_location_url= single_binary_location_url= /bin/sh -c mkdir /docker-entrypoint-initdb.d

2022-04-04 16:35:23 UTC

/bin/sh -c #(nop) COPY file:bd3a0f0cb914264e8f5a88260c25a3a6726b879b90fb87c07c724cc0e00e968c in /etc/clickhouse-server/config.d/

2022-04-04 16:35:24 UTC

/bin/sh -c #(nop) COPY file:5cebaa6234831c727e7d35574e17a83b851bc3c0aa214e52438de046df171336 in /entrypoint.sh

2022-04-04 16:35:24 UTC

|8 DEBIAN_FRONTEND=noninteractive PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static REPOSITORY=deb https://packages.clickhouse.com/deb lts main REPO_CHANNEL=lts VERSION=21.8.15.7 apt_archive=http://archive.ubuntu.com deb_location_url= single_binary_location_url= /bin/sh -c chmod +x /entrypoint.sh

2022-04-04 16:35:25 UTC

/bin/sh -c #(nop) EXPOSE 8123 9000 9009

2022-04-04 16:35:26 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/clickhouse]

2022-04-04 16:35:27 UTC

/bin/sh -c #(nop) ENV CLICKHOUSE_CONFIG=/etc/clickhouse-server/config.xml

2022-04-04 16:35:28 UTC

/bin/sh -c #(nop) 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