2023-03-10 21:41:23 UTC
313 MB
/etc/clickhouse-server/config.xml
LANGen_US.UTF-8
LANGUAGEen_US:en
LC_ALLen_US.UTF-8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
TZUTC
[#000] sha256:47c7644723910b6dfc6ec8b3bd9fed3ac32778cf485ce3a6535ff6b6da06f743 - 8.37% (26.2 MB)
[#001] sha256:4cc24f3a0dc487c3faccd207972f7f24581221be18bb7e57b887672421b64850 - 13.26% (41.5 MB)
[#002] sha256:b26948f126a1dcc2a1854e213cd7b1dd9c1ad0b18e721b05c420f206c40534eb - 78.08% (245 MB)
[#003] sha256:37aa43b2129943b6d47eb2d861455cc864cb8bb6d614a09f2f70f81864f20b4c - 0.03% (86.7 KB)
[#004] sha256:a50c195327aa0ff28165b4e5c3ab300a491f9e0a4dbc85bce2e527fc0419bc9d - 0.26% (843 KB)
[#005] sha256:a6044a27c693f2899294ed00e5dee1297c500dc7b16224f4935ad4c0669a9aa1 - 0.0% (122 Bytes)
[#006] sha256:7b48015f6a492380c49c35fc4660395dd2760b92142e652e033c0e3818dd5176 - 0.0% (371 Bytes)
[#007] sha256:98f54f88f275a857f189e09e79a27fc064f9e21d46576254f7f151d28ab41e4d - 0.0% (2.45 KB)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ARG RELEASE
2023-03-01 04:53:01 UTC/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
2023-03-01 04:53:01 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
2023-03-01 04:53:02 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=20.04
2023-03-01 04:53:03 UTC/bin/sh -c #(nop) ADD file:3478fb5bdcf8ad03d450d48901a6a8452c0ab253f24d21b1e27f99259db2d26b in /
2023-03-01 04:53:04 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2023-03-10 21:41:00 UTC (buildkit.dockerfile.v0)ARG DEBIAN_FRONTEND=noninteractive
2023-03-10 21:41:00 UTC (buildkit.dockerfile.v0)ARG apt_archive=http://archive.ubuntu.com
2023-03-10 21:41:00 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 clean # buildkit
2023-03-10 21:41:00 UTC (buildkit.dockerfile.v0)ARG REPO_CHANNEL=stable
2023-03-10 21:41:00 UTC (buildkit.dockerfile.v0)ARG REPOSITORY=deb https://packages.clickhouse.com/deb stable main
2023-03-10 21:41:00 UTC (buildkit.dockerfile.v0)ARG VERSION=22.11.2.30
2023-03-10 21:41:00 UTC (buildkit.dockerfile.v0)ARG PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static
2023-03-10 21:41:00 UTC (buildkit.dockerfile.v0)ARG deb_location_url=
2023-03-10 21:41:00 UTC (buildkit.dockerfile.v0)ARG single_binary_location_url=
2023-03-10 21:41:00 UTC (buildkit.dockerfile.v0)ARG TARGETARCH
2023-03-10 21:41:18 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.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/package_release VERSION=22.12.5.34 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/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 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 # buildkit
2023-03-10 21:41:20 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.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/package_release VERSION=22.12.5.34 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c apt-get remove --purge -y libksba8 && apt-get autoremove -y # buildkit
2023-03-10 21:41:23 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.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/package_release VERSION=22.12.5.34 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit
2023-03-10 21:41:23 UTC (buildkit.dockerfile.v0)ENV LANG=en_US.UTF-8
2023-03-10 21:41:23 UTC (buildkit.dockerfile.v0)ENV LANGUAGE=en_US:en
2023-03-10 21:41:23 UTC (buildkit.dockerfile.v0)ENV LC_ALL=en_US.UTF-8
2023-03-10 21:41:23 UTC (buildkit.dockerfile.v0)ENV TZ=UTC
2023-03-10 21:41:23 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.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/package_release VERSION=22.12.5.34 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit
2023-03-10 21:41:23 UTC (buildkit.dockerfile.v0)COPY docker_related_config.xml /etc/clickhouse-server/config.d/ # buildkit
2023-03-10 21:41:23 UTC (buildkit.dockerfile.v0)COPY entrypoint.sh /entrypoint.sh # buildkit
2023-03-10 21:41:23 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.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/package_release VERSION=22.12.5.34 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c chmod +x /entrypoint.sh # buildkit
2023-03-10 21:41:23 UTC (buildkit.dockerfile.v0)EXPOSE map[8123/tcp:{} 9000/tcp:{} 9009/tcp:{}]
2023-03-10 21:41:23 UTC (buildkit.dockerfile.v0)VOLUME [/var/lib/clickhouse]
2023-03-10 21:41:23 UTC (buildkit.dockerfile.v0)ENV CLICKHOUSE_CONFIG=/etc/clickhouse-server/config.xml
2023-03-10 21:41:23 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/entrypoint.sh"]
2023-03-10 21:45:09 UTC
233 MB
/etc/clickhouse-server/config.xml
LANGen_US.UTF-8
LANGUAGEen_US:en
LC_ALLen_US.UTF-8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
TZUTC
[#000] sha256:698acb83f45f04d40d74b0d6ee8aa8fd71ed17b0b3994faf5d7e098bdbe3c480 - 10.63% (24.8 MB)
[#001] sha256:376427554b4dc56602f526e5ea5194d6f50d31cf20833974bd414256cfa72ed7 - 14.98% (34.9 MB)
[#002] sha256:835a01e874c8b2178ff09dab6392bed6dad5109954bd0db07bc66ad32db09b4b - 74.01% (172 MB)
[#003] sha256:7534a8cf0b07c42b034c10e815e0d44d6f8329fd2c358945badb9862e70246a4 - 0.04% (86.7 KB)
[#004] sha256:f84611505356ef1fec1d40b5fc85f1636c982be572ea56373e394d98622b537c - 0.35% (843 KB)
[#005] sha256:b15131a91de0e756bf81f5e0cf3fbb844b0ecc8fec6452563d7a3133340f4aaf - 0.0% (122 Bytes)
[#006] sha256:a049c1b798b837af46b4cf04349af0ab982b76b411f479c60f1775bcfc786d24 - 0.0% (374 Bytes)
[#007] sha256:98f54f88f275a857f189e09e79a27fc064f9e21d46576254f7f151d28ab41e4d - 0.0% (2.45 KB)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ARG RELEASE
2023-03-01 05:24:53 UTC/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
2023-03-01 05:24:53 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
2023-03-01 05:24:53 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=20.04
2023-03-01 05:24:55 UTC/bin/sh -c #(nop) ADD file:110968e7ce1c893bcdf7597ece624ff881de3e1ee2c4e2b70dbc18c9a5271fc0 in /
2023-03-01 05:24:55 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2023-03-10 21:44:17 UTC (buildkit.dockerfile.v0)ARG DEBIAN_FRONTEND=noninteractive
2023-03-10 21:44:17 UTC (buildkit.dockerfile.v0)ARG apt_archive=http://archive.ubuntu.com
2023-03-10 21:44:17 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 clean # buildkit
2023-03-10 21:44:17 UTC (buildkit.dockerfile.v0)ARG REPO_CHANNEL=stable
2023-03-10 21:44:17 UTC (buildkit.dockerfile.v0)ARG REPOSITORY=deb https://packages.clickhouse.com/deb stable main
2023-03-10 21:44:17 UTC (buildkit.dockerfile.v0)ARG VERSION=22.11.2.30
2023-03-10 21:44:17 UTC (buildkit.dockerfile.v0)ARG PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static
2023-03-10 21:44:17 UTC (buildkit.dockerfile.v0)ARG deb_location_url=
2023-03-10 21:44:17 UTC (buildkit.dockerfile.v0)ARG single_binary_location_url=
2023-03-10 21:44:17 UTC (buildkit.dockerfile.v0)ARG TARGETARCH
2023-03-10 21:44:49 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.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/package_aarch64 VERSION=22.12.5.34 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/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 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 # buildkit
2023-03-10 21:44:58 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.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/package_aarch64 VERSION=22.12.5.34 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c apt-get remove --purge -y libksba8 && apt-get autoremove -y # buildkit
2023-03-10 21:45:08 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.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/package_aarch64 VERSION=22.12.5.34 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit
2023-03-10 21:45:08 UTC (buildkit.dockerfile.v0)ENV LANG=en_US.UTF-8
2023-03-10 21:45:08 UTC (buildkit.dockerfile.v0)ENV LANGUAGE=en_US:en
2023-03-10 21:45:08 UTC (buildkit.dockerfile.v0)ENV LC_ALL=en_US.UTF-8
2023-03-10 21:45:08 UTC (buildkit.dockerfile.v0)ENV TZ=UTC
2023-03-10 21:45:08 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.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/package_aarch64 VERSION=22.12.5.34 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit
2023-03-10 21:45:08 UTC (buildkit.dockerfile.v0)COPY docker_related_config.xml /etc/clickhouse-server/config.d/ # buildkit
2023-03-10 21:45:08 UTC (buildkit.dockerfile.v0)COPY entrypoint.sh /entrypoint.sh # buildkit
2023-03-10 21:45:09 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.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/package_aarch64 VERSION=22.12.5.34 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/22.12/b82d6401ca1bdc9259703f0b6fbe8247aac5c427/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c chmod +x /entrypoint.sh # buildkit
2023-03-10 21:45:09 UTC (buildkit.dockerfile.v0)EXPOSE map[8123/tcp:{} 9000/tcp:{} 9009/tcp:{}]
2023-03-10 21:45:09 UTC (buildkit.dockerfile.v0)VOLUME [/var/lib/clickhouse]
2023-03-10 21:45:09 UTC (buildkit.dockerfile.v0)ENV CLICKHOUSE_CONFIG=/etc/clickhouse-server/config.xml
2023-03-10 21:45:09 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/entrypoint.sh"]
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.