2023-08-22 14:29:06 UTC
137 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
TERMxterm
ZBX_SOURCEShttps://git.zabbix.com/scm/zbx/zabbix.git
ZBX_VERSION6.4.6
[#000] sha256:3303935ce95766df9d0f613a8d3835017474197542e54c6d1ba27a417f1d87ae - 40.05% (54.7 MB)
[#001] sha256:66aa1ea9bc2f79bb1ae396f50736e1bf8a1b3d41f23a3d4adb97327a6b1970de - 21.64% (29.6 MB)
[#002] sha256:e387662ce8837d53580e0b67911f198acb7602e759b983d0aad8f1df37dad947 - 0.0% (5 KB)
[#003] sha256:4018276a15348ab359417af262125e321263c12d931ea5ba21673226c33aabf3 - 38.31% (52.3 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:5d90abf920a7094668ab5248075cedab9693915907cdd8ad74f10a89b7ad2bcc - 0.0% (2.76 KB)
/bin/sh -c #(nop) ADD file:7f6f1395b654d5e1510123464baa83ec5d061fac95fd1eecb38a313163cb8edc in /
2023-08-21 19:50:30 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version="1.0" org.label-schema.name="CentOS Stream 9 Base Image" org.label-schema.vendor="CentOS" org.label-schema.license="GPLv2" org.label-schema.build-date="20230821"
2023-08-21 19:50:33 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2023-08-22 14:27:37 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2023-08-22 14:27:37 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2023-08-22 14:27:37 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2023-08-22 14:27:37 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.4.6 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2023-08-22 14:27:37 UTC (buildkit.dockerfile.v0)LABEL org.opencontainers.image.authors=Alexey Pustovalov <alexey.pustovalov@zabbix.com> org.opencontainers.image.description=Zabbix web-interface based on Nginx web server with MySQL database support org.opencontainers.image.documentation=https://www.zabbix.com/documentation/6.4/manual/installation/containers org.opencontainers.image.licenses=GPL v2.0 org.opencontainers.image.source=https://git.zabbix.com/scm/zbx/zabbix.git org.opencontainers.image.title=Zabbix web-interface (Nginx, MySQL) org.opencontainers.image.url=https://zabbix.com/ org.opencontainers.image.vendor=Zabbix LLC org.opencontainers.image.version=6.4.6
2023-08-22 14:27:37 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2023-08-22 14:27:37 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.4.6/ui /usr/share/zabbix # buildkit
2023-08-22 14:27:37 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2023-08-22 14:29:06 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.4 ZBX_VERSION=6.4.6 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && REPOLIST="baseos,appstream,epel" && INSTALL_PKGS="bash curl-minimal mysql nginx php-bcmath php-fpm php-gd php-ldap php-mbstring php-mysqlnd php-json php-xml findutils glibc-locale-source supervisor" && dnf -y install epel-release && dnf -y install --disablerepo "*" --enablerepo "${REPOLIST}" --setopt=tsflags=nodocs --setopt=install_weak_deps=False --best ${INSTALL_PKGS} && groupadd --system --gid 1995 zabbix && useradd --system --comment "Zabbix monitoring system" -g zabbix -G root --uid 1997 --shell /sbin/nologin --home-dir /var/lib/zabbix/ zabbix && mkdir -p /etc/zabbix && mkdir -p /etc/zabbix/web && mkdir -p /etc/zabbix/web/certs && mkdir -p /var/lib/php/session && rm -f /etc/nginx/conf.d/*.conf && rm -f /etc/php-fpm.d/www.conf && cd /usr/share/zabbix/ && rm -f conf/zabbix.conf.php conf/maintenance.inc.php conf/zabbix.conf.php.example && rm -rf tests && rm -f locale/add_new_language.sh locale/update_po.sh locale/make_mo.sh && find /usr/share/zabbix/locale -name '*.po' | xargs rm -f && find /usr/share/zabbix/locale -name '*.sh' | xargs rm -f && ln -s "/etc/zabbix/web/zabbix.conf.php" "/usr/share/zabbix/conf/zabbix.conf.php" && ln -s "/etc/zabbix/web/maintenance.inc.php" "/usr/share/zabbix/conf/maintenance.inc.php" && cat /usr/share/zabbix/include/locales.inc.php | grep display | grep true | awk '{$1=$1};1' | cut -d"'" -f 2 | sort | xargs -I '{}' bash -c 'echo "{}" && localedef -c -i {} -f UTF-8 {}.UTF-8 2>/dev/null' && chown --quiet -R zabbix:root /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && chgrp -R 0 /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && chmod -R g=u /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && chown --quiet -R zabbix:root /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf && chgrp -R 0 /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf && chmod -R g=u /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf && chown --quiet -R zabbix:root /var/lib/php/session/ && chgrp -R 0 /var/lib/php/session/ && chmod -R g=u /var/lib/php/session/ && dnf -y remove findutils glibc-locale-source && dnf -y clean all && rm -rf /var/cache/yum /var/lib/yum/yumdb/* /usr/lib/udev/hwdb.d/* && rm -rf /var/cache/dnf /etc/udev/hwdb.bin /root/.pki # buildkit
2023-08-22 14:29:06 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2023-08-22 14:29:06 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2023-08-22 14:29:06 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2023-08-22 14:29:06 UTC (buildkit.dockerfile.v0)USER 1997
2023-08-22 14:29:06 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2023-08-22 14:34:15 UTC
134 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
TERMxterm
ZBX_SOURCEShttps://git.zabbix.com/scm/zbx/zabbix.git
ZBX_VERSION6.4.6
[#000] sha256:96ba9efb8b6e8253f656a3d416bb06c02e1bc418e8d561760860a696533e08e9 - 39.31% (52.8 MB)
[#001] sha256:d7b445c14438f709c7ac9f07e015b38d211aaeb8986d3637916d6490ede1f196 - 21.99% (29.6 MB)
[#002] sha256:e387662ce8837d53580e0b67911f198acb7602e759b983d0aad8f1df37dad947 - 0.0% (5 KB)
[#003] sha256:6325796d4be364213a3752b6b76cbf460c688e09096c58703a5cf786f4d05155 - 38.7% (52 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:bc341426697a26562529608855ce18b6f25b6af9c967e5fa8b6f449e1ff111f5 - 0.0% (2.76 KB)
/bin/sh -c #(nop) ADD file:c66732aefade225f3b282469a57cd77e9c8c26ae8b1b50be5e548ef064063bef in /
2023-08-21 19:49:30 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version="1.0" org.label-schema.name="CentOS Stream 9 Base Image" org.label-schema.vendor="CentOS" org.label-schema.license="GPLv2" org.label-schema.build-date="20230821"
2023-08-21 19:49:31 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2023-08-22 14:27:37 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2023-08-22 14:27:37 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2023-08-22 14:27:37 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2023-08-22 14:27:37 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.4.6 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2023-08-22 14:27:37 UTC (buildkit.dockerfile.v0)LABEL org.opencontainers.image.authors=Alexey Pustovalov <alexey.pustovalov@zabbix.com> org.opencontainers.image.description=Zabbix web-interface based on Nginx web server with MySQL database support org.opencontainers.image.documentation=https://www.zabbix.com/documentation/6.4/manual/installation/containers org.opencontainers.image.licenses=GPL v2.0 org.opencontainers.image.source=https://git.zabbix.com/scm/zbx/zabbix.git org.opencontainers.image.title=Zabbix web-interface (Nginx, MySQL) org.opencontainers.image.url=https://zabbix.com/ org.opencontainers.image.vendor=Zabbix LLC org.opencontainers.image.version=6.4.6
2023-08-22 14:27:37 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2023-08-22 14:27:37 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.4.6/ui /usr/share/zabbix # buildkit
2023-08-22 14:27:37 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2023-08-22 14:34:15 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.4 ZBX_VERSION=6.4.6 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && REPOLIST="baseos,appstream,epel" && INSTALL_PKGS="bash curl-minimal mysql nginx php-bcmath php-fpm php-gd php-ldap php-mbstring php-mysqlnd php-json php-xml findutils glibc-locale-source supervisor" && dnf -y install epel-release && dnf -y install --disablerepo "*" --enablerepo "${REPOLIST}" --setopt=tsflags=nodocs --setopt=install_weak_deps=False --best ${INSTALL_PKGS} && groupadd --system --gid 1995 zabbix && useradd --system --comment "Zabbix monitoring system" -g zabbix -G root --uid 1997 --shell /sbin/nologin --home-dir /var/lib/zabbix/ zabbix && mkdir -p /etc/zabbix && mkdir -p /etc/zabbix/web && mkdir -p /etc/zabbix/web/certs && mkdir -p /var/lib/php/session && rm -f /etc/nginx/conf.d/*.conf && rm -f /etc/php-fpm.d/www.conf && cd /usr/share/zabbix/ && rm -f conf/zabbix.conf.php conf/maintenance.inc.php conf/zabbix.conf.php.example && rm -rf tests && rm -f locale/add_new_language.sh locale/update_po.sh locale/make_mo.sh && find /usr/share/zabbix/locale -name '*.po' | xargs rm -f && find /usr/share/zabbix/locale -name '*.sh' | xargs rm -f && ln -s "/etc/zabbix/web/zabbix.conf.php" "/usr/share/zabbix/conf/zabbix.conf.php" && ln -s "/etc/zabbix/web/maintenance.inc.php" "/usr/share/zabbix/conf/maintenance.inc.php" && cat /usr/share/zabbix/include/locales.inc.php | grep display | grep true | awk '{$1=$1};1' | cut -d"'" -f 2 | sort | xargs -I '{}' bash -c 'echo "{}" && localedef -c -i {} -f UTF-8 {}.UTF-8 2>/dev/null' && chown --quiet -R zabbix:root /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && chgrp -R 0 /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && chmod -R g=u /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && chown --quiet -R zabbix:root /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf && chgrp -R 0 /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf && chmod -R g=u /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf && chown --quiet -R zabbix:root /var/lib/php/session/ && chgrp -R 0 /var/lib/php/session/ && chmod -R g=u /var/lib/php/session/ && dnf -y remove findutils glibc-locale-source && dnf -y clean all && rm -rf /var/cache/yum /var/lib/yum/yumdb/* /usr/lib/udev/hwdb.d/* && rm -rf /var/cache/dnf /etc/udev/hwdb.bin /root/.pki # buildkit
2023-08-22 14:34:15 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2023-08-22 14:34:15 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2023-08-22 14:34:15 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2023-08-22 14:34:15 UTC (buildkit.dockerfile.v0)USER 1997
2023-08-22 14:34:15 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2023-08-22 14:33:47 UTC
143 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
TERMxterm
ZBX_SOURCEShttps://git.zabbix.com/scm/zbx/zabbix.git
ZBX_VERSION6.4.6
[#000] sha256:5fa9bdca98ac9888b819fc1a68b788b33e870e688671f7dd40ee26c34632ee63 - 41.3% (59.2 MB)
[#001] sha256:3f4349db9a407996a87e2366b8c4f1b068c70dfc44e4ee81fad3ce373f26f6f1 - 20.63% (29.6 MB)
[#002] sha256:e387662ce8837d53580e0b67911f198acb7602e759b983d0aad8f1df37dad947 - 0.0% (5 KB)
[#003] sha256:3537e6c345b31c2f3189ea908476dcdb5ed562a3a027529c996675469b2accd5 - 38.07% (54.6 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:ae2ef8489c5128bd977d2559b244c6795bf6839cd0cad203e2f89c6e0c141f77 - 0.0% (2.76 KB)
/bin/sh -c #(nop) ADD file:49394ed20c111ae3cb0151799af49b8ca4c1be7e487e9e8b7433c8107f474e40 in /
2023-08-21 19:49:48 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version="1.0" org.label-schema.name="CentOS Stream 9 Base Image" org.label-schema.vendor="CentOS" org.label-schema.license="GPLv2" org.label-schema.build-date="20230821"
2023-08-21 19:49:51 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2023-08-22 14:27:32 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2023-08-22 14:27:32 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2023-08-22 14:27:32 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2023-08-22 14:27:32 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.4.6 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2023-08-22 14:27:32 UTC (buildkit.dockerfile.v0)LABEL org.opencontainers.image.authors=Alexey Pustovalov <alexey.pustovalov@zabbix.com> org.opencontainers.image.description=Zabbix web-interface based on Nginx web server with MySQL database support org.opencontainers.image.documentation=https://www.zabbix.com/documentation/6.4/manual/installation/containers org.opencontainers.image.licenses=GPL v2.0 org.opencontainers.image.source=https://git.zabbix.com/scm/zbx/zabbix.git org.opencontainers.image.title=Zabbix web-interface (Nginx, MySQL) org.opencontainers.image.url=https://zabbix.com/ org.opencontainers.image.vendor=Zabbix LLC org.opencontainers.image.version=6.4.6
2023-08-22 14:27:32 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2023-08-22 14:27:32 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.4.6/ui /usr/share/zabbix # buildkit
2023-08-22 14:27:32 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2023-08-22 14:33:47 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.4 ZBX_VERSION=6.4.6 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && REPOLIST="baseos,appstream,epel" && INSTALL_PKGS="bash curl-minimal mysql nginx php-bcmath php-fpm php-gd php-ldap php-mbstring php-mysqlnd php-json php-xml findutils glibc-locale-source supervisor" && dnf -y install epel-release && dnf -y install --disablerepo "*" --enablerepo "${REPOLIST}" --setopt=tsflags=nodocs --setopt=install_weak_deps=False --best ${INSTALL_PKGS} && groupadd --system --gid 1995 zabbix && useradd --system --comment "Zabbix monitoring system" -g zabbix -G root --uid 1997 --shell /sbin/nologin --home-dir /var/lib/zabbix/ zabbix && mkdir -p /etc/zabbix && mkdir -p /etc/zabbix/web && mkdir -p /etc/zabbix/web/certs && mkdir -p /var/lib/php/session && rm -f /etc/nginx/conf.d/*.conf && rm -f /etc/php-fpm.d/www.conf && cd /usr/share/zabbix/ && rm -f conf/zabbix.conf.php conf/maintenance.inc.php conf/zabbix.conf.php.example && rm -rf tests && rm -f locale/add_new_language.sh locale/update_po.sh locale/make_mo.sh && find /usr/share/zabbix/locale -name '*.po' | xargs rm -f && find /usr/share/zabbix/locale -name '*.sh' | xargs rm -f && ln -s "/etc/zabbix/web/zabbix.conf.php" "/usr/share/zabbix/conf/zabbix.conf.php" && ln -s "/etc/zabbix/web/maintenance.inc.php" "/usr/share/zabbix/conf/maintenance.inc.php" && cat /usr/share/zabbix/include/locales.inc.php | grep display | grep true | awk '{$1=$1};1' | cut -d"'" -f 2 | sort | xargs -I '{}' bash -c 'echo "{}" && localedef -c -i {} -f UTF-8 {}.UTF-8 2>/dev/null' && chown --quiet -R zabbix:root /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && chgrp -R 0 /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && chmod -R g=u /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && chown --quiet -R zabbix:root /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf && chgrp -R 0 /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf && chmod -R g=u /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf && chown --quiet -R zabbix:root /var/lib/php/session/ && chgrp -R 0 /var/lib/php/session/ && chmod -R g=u /var/lib/php/session/ && dnf -y remove findutils glibc-locale-source && dnf -y clean all && rm -rf /var/cache/yum /var/lib/yum/yumdb/* /usr/lib/udev/hwdb.d/* && rm -rf /var/cache/dnf /etc/udev/hwdb.bin /root/.pki # buildkit
2023-08-22 14:33:47 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2023-08-22 14:33:47 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2023-08-22 14:33:47 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2023-08-22 14:33:47 UTC (buildkit.dockerfile.v0)USER 1997
2023-08-22 14:33:47 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-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.