Namespace
clickhouse
Image / Tag
clickhouse-server:21.12.3.32
Content Digest
sha256:7d58af905fef789288892f1eac0d570ac23ef4c9b326baf684f202ac2894af09
Details
Created

2021-12-27 10:19:45 UTC

Size

248 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:7b1a6ab2e44dbac178598dabe7cff59bd67233dba0b27e4fbd1f9d4b3c877a54 - 11.0% (27.2 MB)

[#001] sha256:7ef9fa67d54f19902074ca362c18f0d900a4de05f9a4c6d663cde9f8b056521d - 0.0% (849 Bytes)

[#002] sha256:8f815171d59f5f6599f9a919805dcd06d74631f7296f3342d46dc2b7d773a9f5 - 88.67% (220 MB)

[#003] sha256:592cc7ab07c7128e6bab37713398648730dd7e07b2e69d9c8aabcb3337a05684 - 0.33% (843 KB)

[#004] sha256:4aecf5861a1e346336616f624321a5dcadb69213432fb227fd67106e60fdeb90 - 0.0% (149 Bytes)

[#005] sha256:75282093810f5848ebf9a9014909e70092370a2f7e6543996ced35a6d03394e3 - 0.0% (365 Bytes)

[#006] sha256:37f33ec685ad6f15f94b294c79d1089cc08e3817045fbedcdd96920e6bf1bc5a - 0.0% (2.29 KB)

[#007] sha256:37f33ec685ad6f15f94b294c79d1089cc08e3817045fbedcdd96920e6bf1bc5a - 0.0% (2.29 KB)


History
2021-10-16 00:37:47 UTC

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

2021-10-16 00:37:47 UTC

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

2021-12-27 10:19:05 UTC

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

2021-12-27 10:19:06 UTC

|1 apt_archive=http://archive.ubuntu.com /bin/sh -c sed -i "s|http://archive.ubuntu.com|$apt_archive|g" /etc/apt/sources.list

2021-12-27 10:19:06 UTC

/bin/sh -c #(nop) ARG repository=deb https://repo.clickhouse.com/deb/stable/ main/

2021-12-27 10:19:06 UTC

/bin/sh -c #(nop) ARG version=21.12.3.*

2021-12-27 10:19:06 UTC

/bin/sh -c #(nop) ARG gosu_ver=1.10

2021-12-27 10:19:07 UTC

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

2021-12-27 10:19:07 UTC

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

2021-12-27 10:19:07 UTC

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

2021-12-27 10:19:38 UTC

|7 DEBIAN_FRONTEND=noninteractive apt_archive=http://archive.ubuntu.com deb_location_url= gosu_ver=1.10 repository=deb https://repo.clickhouse.com/deb/stable/ main/ single_binary_location_url= version=21.12.3.* /bin/sh -c 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 && mkdir -p /etc/apt/sources.list.d && apt-key adv --keyserver keyserver.ubuntu.com --recv E0C56BD4 && echo $repository > /etc/apt/sources.list.d/clickhouse.list && 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 && wget --progress=bar:force:noscroll "${deb_location_url}/clickhouse-common-static_${version}_amd64.deb" -P /tmp/clickhouse_debs && wget --progress=bar:force:noscroll "${deb_location_url}/clickhouse-client_${version}_all.deb" -P /tmp/clickhouse_debs && wget --progress=bar:force:noscroll "${deb_location_url}/clickhouse-server_${version}_all.deb" -P /tmp/clickhouse_debs && 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 echo "installing from repository: $repository" && apt-get update && apt-get --yes -o "Dpkg::Options::=--force-confdef" -o "Dpkg::Options::=--force-confold" upgrade && apt-get install --allow-unauthenticated --yes --no-install-recommends clickhouse-common-static=$version clickhouse-client=$version clickhouse-server=$version ; fi && wget --progress=bar:force:noscroll "https://github.com/tianon/gosu/releases/download/$gosu_ver/gosu-$(dpkg --print-architecture)" -O /bin/gosu && chmod +x /bin/gosu && clickhouse-local -q 'SELECT * FROM system.build_options' && rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/* && apt-get clean && 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

2021-12-27 10:19:42 UTC

|7 DEBIAN_FRONTEND=noninteractive apt_archive=http://archive.ubuntu.com deb_location_url= gosu_ver=1.10 repository=deb https://repo.clickhouse.com/deb/stable/ main/ single_binary_location_url= version=21.12.3.* /bin/sh -c locale-gen en_US.UTF-8

2021-12-27 10:19:42 UTC

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

2021-12-27 10:19:42 UTC

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

2021-12-27 10:19:43 UTC

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

2021-12-27 10:19:43 UTC

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

2021-12-27 10:19:43 UTC

|7 DEBIAN_FRONTEND=noninteractive apt_archive=http://archive.ubuntu.com deb_location_url= gosu_ver=1.10 repository=deb https://repo.clickhouse.com/deb/stable/ main/ single_binary_location_url= version=21.12.3.* /bin/sh -c mkdir /docker-entrypoint-initdb.d

2021-12-27 10:19:44 UTC

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

2021-12-27 10:19:44 UTC

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

2021-12-27 10:19:44 UTC

|7 DEBIAN_FRONTEND=noninteractive apt_archive=http://archive.ubuntu.com deb_location_url= gosu_ver=1.10 repository=deb https://repo.clickhouse.com/deb/stable/ main/ single_binary_location_url= version=21.12.3.* /bin/sh -c chmod +x /entrypoint.sh

2021-12-27 10:19:45 UTC

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

2021-12-27 10:19:45 UTC

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

2021-12-27 10:19:45 UTC

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

2021-12-27 10:19:45 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