Namespace
altinity
Image / Tag
clickhouse-server:22.8.15.25.altinityfips
Content Digest
sha256:86e57c55d01318923ebcc4b4db734cea1132ece6370f9717ac72d8d9e4225c9f
Details
Created

2023-05-27 01:40:46 UTC

Size

296 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:ca1778b6935686ad781c27472c4668fc61ec3aeb85494f72deb1921892b9d39e - 8.85% (26.2 MB)

[#001] sha256:cb051d228262e327d54d840b6868350ce346814d18eb3d33bc2fd53e52b24c45 - 14.39% (42.6 MB)

[#002] sha256:a46ea97a5a6106af9c74e361f0542c43679035159b8490060909029712a33b4a - 76.47% (227 MB)

[#003] sha256:fe7f56733dcf27817530b5206d1cf6c9c32114e080582cfdf1f7524b95373e7c - 0.28% (843 KB)

[#004] sha256:3446cd25666e3a5d47c3cf26dfd2712abc390bc90751dd42bbb88e7cecbe0cda - 0.0% (147 Bytes)

[#005] sha256:ff8fe1d823d5b6875ab2e8115783718bb322ee0c41bbea55cc2b53e7ca804c64 - 0.0% (363 Bytes)

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

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


History
2023-04-13 13:05:13 UTC

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

2023-04-13 13:05:13 UTC

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

2023-04-13 13:05:13 UTC

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

2023-04-13 13:05:13 UTC

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

2023-04-13 13:05:15 UTC

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

2023-04-13 13:05:15 UTC

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

2023-05-27 01:40:22 UTC

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

2023-05-27 01:40:22 UTC

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

2023-05-27 01:40:34 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-05-27 01:40:34 UTC

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

2023-05-27 01:40:34 UTC

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

2023-05-27 01:40:34 UTC

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

2023-05-27 01:40:35 UTC

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

2023-05-27 01:40:35 UTC

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

2023-05-27 01:40:35 UTC

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

2023-05-27 01:40:35 UTC

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

2023-05-27 01:40:43 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.15.25.altinityfips 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-05-27 01:40:45 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.15.25.altinityfips 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-05-27 01:40:45 UTC

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

2023-05-27 01:40:45 UTC

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

2023-05-27 01:40:45 UTC

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

2023-05-27 01:40:45 UTC

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

2023-05-27 01:40:45 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.15.25.altinityfips 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-05-27 01:40:45 UTC

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

2023-05-27 01:40:45 UTC

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

2023-05-27 01:40:46 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.15.25.altinityfips 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-05-27 01:40:46 UTC

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

2023-05-27 01:40:46 UTC

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

2023-05-27 01:40:46 UTC

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

2023-05-27 01:40:46 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