2023-04-22 15:22:15 UTC
311 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:ca1778b6935686ad781c27472c4668fc61ec3aeb85494f72deb1921892b9d39e - 8.44% (26.2 MB)
[#001] sha256:cd0ac3f9a2e3cce1013679c096d909a847706b71b160d9d9c0fb901735bad72c - 13.53% (42.1 MB)
[#002] sha256:6ba644fa0c2bd874c14267d54b2b90baabe90560b9c2801a6ed9d4d989b61003 - 77.74% (242 MB)
[#003] sha256:168565e5fd6ea9174c728a825277e22f02ad67f5f3aa6f8f6f7b6a28995f8b61 - 0.03% (86.7 KB)
[#004] sha256:1a43be835c2cf0673ff38d2d7e0407070611211a19ea89dd5c29f3de2712af70 - 0.26% (843 KB)
[#005] sha256:24af595520e0cd2cabbfabbf0fbb1bfe17b2a90c104a231673ff55ea7278a9ee - 0.0% (122 Bytes)
[#006] sha256:1b2cd8f02af066b5ff05109f2d10c100e65a934977d0b6f36aaa53625ca0760c - 0.0% (367 Bytes)
[#007] sha256:06bef79be9ebb6b8727fe146ada84dacc4ed8fce20e12623782b0ab2dd570376 - 0.0% (2.46 KB)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/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-04-22 15:21:55 UTC (buildkit.dockerfile.v0)ARG DEBIAN_FRONTEND=noninteractive
2023-04-22 15:21:55 UTC (buildkit.dockerfile.v0)ARG apt_archive=http://archive.ubuntu.com
2023-04-22 15:21:55 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-04-22 15:21:55 UTC (buildkit.dockerfile.v0)ARG REPO_CHANNEL=stable
2023-04-22 15:21:55 UTC (buildkit.dockerfile.v0)ARG REPOSITORY=deb https://packages.clickhouse.com/deb stable main
2023-04-22 15:21:55 UTC (buildkit.dockerfile.v0)ARG VERSION=22.12.3.5
2023-04-22 15:21:55 UTC (buildkit.dockerfile.v0)ARG PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static
2023-04-22 15:21:55 UTC (buildkit.dockerfile.v0)ARG deb_location_url=
2023-04-22 15:21:55 UTC (buildkit.dockerfile.v0)ARG single_binary_location_url=
2023-04-22 15:21:55 UTC (buildkit.dockerfile.v0)ARG TARGETARCH
2023-04-22 15:22:11 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/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/package_release VERSION=23.1.7.30 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/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-04-22 15:22:13 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/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/package_release VERSION=23.1.7.30 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c apt-get remove --purge -y libksba8 && apt-get autoremove -y # buildkit
2023-04-22 15:22:15 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/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/package_release VERSION=23.1.7.30 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit
2023-04-22 15:22:15 UTC (buildkit.dockerfile.v0)ENV LANG=en_US.UTF-8
2023-04-22 15:22:15 UTC (buildkit.dockerfile.v0)ENV LANGUAGE=en_US:en
2023-04-22 15:22:15 UTC (buildkit.dockerfile.v0)ENV LC_ALL=en_US.UTF-8
2023-04-22 15:22:15 UTC (buildkit.dockerfile.v0)ENV TZ=UTC
2023-04-22 15:22:15 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/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/package_release VERSION=23.1.7.30 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit
2023-04-22 15:22:15 UTC (buildkit.dockerfile.v0)COPY docker_related_config.xml /etc/clickhouse-server/config.d/ # buildkit
2023-04-22 15:22:15 UTC (buildkit.dockerfile.v0)COPY entrypoint.sh /entrypoint.sh # buildkit
2023-04-22 15:22:15 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/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/package_release VERSION=23.1.7.30 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/package_release single_binary_location_url= TARGETARCH=amd64 /bin/sh -c chmod +x /entrypoint.sh # buildkit
2023-04-22 15:22:15 UTC (buildkit.dockerfile.v0)EXPOSE map[8123/tcp:{} 9000/tcp:{} 9009/tcp:{}]
2023-04-22 15:22:15 UTC (buildkit.dockerfile.v0)VOLUME [/var/lib/clickhouse]
2023-04-22 15:22:15 UTC (buildkit.dockerfile.v0)ENV CLICKHOUSE_CONFIG=/etc/clickhouse-server/config.xml
2023-04-22 15:22:15 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/entrypoint.sh"]
2023-04-22 15:26:02 UTC
230 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:8659cf1709ef03be2c0b2dc339b19432bff8a0753d2d7d53f47272f098f56ef4 - 10.76% (24.8 MB)
[#001] sha256:14a46f9f636ccc8d970cd044e09ae3a43f12ff080f9fddecb18dc6ae70cbf13c - 15.25% (35.1 MB)
[#002] sha256:9d3126f815181b6707bec554dbe15f8fb2e9199c78b629db4746d6ec5e045bd2 - 73.6% (169 MB)
[#003] sha256:adf58598845fd3f2611763edb7e84d14c3c5970c1e8e4289c1486fbf2cd333b2 - 0.04% (87.5 KB)
[#004] sha256:892d1f19babe0b143c4692ee2ba7c8ad56e83f89bb0867c1cbcc6e3bb699664e - 0.36% (843 KB)
[#005] sha256:30d69bf9f2731f5b6e9714544ab0fcd4ff3a8b3e01fc09acd8b15ece5a0f0c87 - 0.0% (122 Bytes)
[#006] sha256:cc5b08683a590d1e8149b275c219950a131b35c804d569898fdd61c5bf3e734e - 0.0% (370 Bytes)
[#007] sha256:06bef79be9ebb6b8727fe146ada84dacc4ed8fce20e12623782b0ab2dd570376 - 0.0% (2.46 KB)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ARG RELEASE
2023-04-13 13:09:50 UTC/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
2023-04-13 13:09:50 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
2023-04-13 13:09:51 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=20.04
2023-04-13 13:09:59 UTC/bin/sh -c #(nop) ADD file:0150fa02321f8be160e90ff64583d263fe651b5d418ab65f05ba604449ab47c6 in /
2023-04-13 13:10:00 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2023-04-22 15:25:10 UTC (buildkit.dockerfile.v0)ARG DEBIAN_FRONTEND=noninteractive
2023-04-22 15:25:10 UTC (buildkit.dockerfile.v0)ARG apt_archive=http://archive.ubuntu.com
2023-04-22 15:25:10 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-04-22 15:25:10 UTC (buildkit.dockerfile.v0)ARG REPO_CHANNEL=stable
2023-04-22 15:25:10 UTC (buildkit.dockerfile.v0)ARG REPOSITORY=deb https://packages.clickhouse.com/deb stable main
2023-04-22 15:25:10 UTC (buildkit.dockerfile.v0)ARG VERSION=22.12.3.5
2023-04-22 15:25:10 UTC (buildkit.dockerfile.v0)ARG PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static
2023-04-22 15:25:10 UTC (buildkit.dockerfile.v0)ARG deb_location_url=
2023-04-22 15:25:10 UTC (buildkit.dockerfile.v0)ARG single_binary_location_url=
2023-04-22 15:25:10 UTC (buildkit.dockerfile.v0)ARG TARGETARCH
2023-04-22 15:25:42 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/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/package_aarch64 VERSION=23.1.7.30 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/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-04-22 15:25:51 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/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/package_aarch64 VERSION=23.1.7.30 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c apt-get remove --purge -y libksba8 && apt-get autoremove -y # buildkit
2023-04-22 15:26:01 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/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/package_aarch64 VERSION=23.1.7.30 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c locale-gen en_US.UTF-8 # buildkit
2023-04-22 15:26:01 UTC (buildkit.dockerfile.v0)ENV LANG=en_US.UTF-8
2023-04-22 15:26:01 UTC (buildkit.dockerfile.v0)ENV LANGUAGE=en_US:en
2023-04-22 15:26:01 UTC (buildkit.dockerfile.v0)ENV LC_ALL=en_US.UTF-8
2023-04-22 15:26:01 UTC (buildkit.dockerfile.v0)ENV TZ=UTC
2023-04-22 15:26:02 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/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/package_aarch64 VERSION=23.1.7.30 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit
2023-04-22 15:26:02 UTC (buildkit.dockerfile.v0)COPY docker_related_config.xml /etc/clickhouse-server/config.d/ # buildkit
2023-04-22 15:26:02 UTC (buildkit.dockerfile.v0)COPY entrypoint.sh /entrypoint.sh # buildkit
2023-04-22 15:26:02 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/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/package_aarch64 VERSION=23.1.7.30 PACKAGES=clickhouse-client clickhouse-server clickhouse-common-static deb_location_url=https://s3.amazonaws.com/clickhouse-builds/23.1/c94dba6e023d2767c6843acc2fa3aff419f65498/package_aarch64 single_binary_location_url= TARGETARCH=arm64 /bin/sh -c chmod +x /entrypoint.sh # buildkit
2023-04-22 15:26:02 UTC (buildkit.dockerfile.v0)EXPOSE map[8123/tcp:{} 9000/tcp:{} 9009/tcp:{}]
2023-04-22 15:26:02 UTC (buildkit.dockerfile.v0)VOLUME [/var/lib/clickhouse]
2023-04-22 15:26:02 UTC (buildkit.dockerfile.v0)ENV CLICKHOUSE_CONFIG=/etc/clickhouse-server/config.xml
2023-04-22 15:26:02 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.