Namespace
altinity
Image / Tag
clickhouse-server:22.8.13.21.altinitystable
Content Digest
sha256:4b5f96d3970c2d1df3d9630e34b69fe4a26444790bfc361fdebf6d2d77e34d0f
Details
Created

2023-02-14 13:46:38 UTC

Size

305 MB

Content Digest
Labels
  • org.opencontainers.image.ref.name
    ubuntu
  • org.opencontainers.image.version
    20.04

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:b549f31133a955f68f9fa0d93f18436c4a180e12184b999a8ecf14f7eaa83309 - 8.59% (26.2 MB)

[#001] sha256:f046ea691f752c310b86abe46417834cc4cde40d61bdbe343b3af0c35b093dd6 - 13.51% (41.2 MB)

[#002] sha256:a32ecc1633d2f4ab6a851da5494d8fa77958cadf51247d828a58160e11f0b884 - 77.63% (237 MB)

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

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

[#005] sha256:4dd22b1f5250fba5a19f760ae03aadd8184ad0225eb2cce11b391e59a139b39e - 0.0% (360 Bytes)

[#006] sha256:987e28773f6e7399d3bcccb6f9956178b994b70acfa31c904082fae3c7770c80 - 0.0% (2.4 KB)

[#007] sha256:987e28773f6e7399d3bcccb6f9956178b994b70acfa31c904082fae3c7770c80 - 0.0% (2.4 KB)


History
2023-02-01 11:42:37 UTC

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

2023-02-01 11:42:37 UTC

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

2023-02-01 11:42:37 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu

2023-02-01 11:42:37 UTC

/bin/sh -c #(nop) LABEL org.opencontainers.image.version=20.04

2023-02-01 11:42:39 UTC

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

2023-02-01 11:42:39 UTC

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

2023-02-14 13:46:08 UTC

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

2023-02-14 13:46:08 UTC

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

2023-02-14 13:46:21 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 clean

2023-02-14 13:46:21 UTC

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

2023-02-14 13:46:22 UTC

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

2023-02-14 13:46:22 UTC

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

2023-02-14 13:46:22 UTC

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

2023-02-14 13:46:23 UTC

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

2023-02-14 13:46:23 UTC

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

2023-02-14 13:46:23 UTC

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

2023-02-14 13:46:31 UTC

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

2023-02-14 13:46:33 UTC

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

2023-02-14 13:46:33 UTC

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

2023-02-14 13:46:33 UTC

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

2023-02-14 13:46:34 UTC

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

2023-02-14 13:46:34 UTC

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

2023-02-14 13:46:35 UTC

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

2023-02-14 13:46:36 UTC

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

2023-02-14 13:46:36 UTC

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

2023-02-14 13:46:37 UTC

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

2023-02-14 13:46:37 UTC

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

2023-02-14 13:46:37 UTC

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

2023-02-14 13:46:38 UTC

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

2023-02-14 13:46:38 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