2025-10-02 04:36:40 UTC
154 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
TERMxterm
ZABBIX_CONF_DIR/etc/zabbix
ZABBIX_WWW_ROOT/usr/share/zabbix
ZBX_SOURCEShttps://git.zabbix.com/scm/zbx/zabbix.git
ZBX_VERSION7.2.13
[#000] sha256:806f49275cbff8773a3d3cb9c7e11efc00cbe434b66b9896fdad5064c4cb5355 - 30.66% (47.2 MB)
[#001] sha256:0b4edfba1dcc7bd30189882975450908abb92944223b6fdd0cd1a56f6f7ea363 - 21.04% (32.4 MB)
[#002] sha256:e0b77161e5cb6529c78517ae4110466db71d008e72d90da0e2af276475a2702e - 0.0% (5.48 KB)
[#003] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#004] sha256:779245357ab6efc5e70b94ef7606bf8ca159b5a319be9808d477618bb8d6aee4 - 48.29% (74.3 MB)
[#005] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#006] sha256:a18414542747f00f0e4f87617214e368082cbce485bceed50ee3aa6934d9af95 - 0.0% (3.15 KB)
ADD oraclelinux-9-slim-amd64-rootfs.tar.xz / # buildkit
2025-09-22 21:47:11 UTC (buildkit.dockerfile.v0)CMD ["/bin/bash"]
2025-10-02 04:35:39 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION=7.2
2025-10-02 04:35:39 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION=7.2.13
2025-10-02 04:35:39 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2025-10-02 04:35:39 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=7.2.13 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git ZABBIX_CONF_DIR=/etc/zabbix ZABBIX_WWW_ROOT=/usr/share/zabbix
2025-10-02 04:35:39 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/7.2/manual/installation/containers org.opencontainers.image.licenses=AGPL v3.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 SIA org.opencontainers.image.version=7.2.13
2025-10-02 04:35:39 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2025-10-02 04:35:39 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-7.2.13/ui /usr/share/zabbix # buildkit
2025-10-02 04:35:39 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2025-10-02 04:35:39 UTC (buildkit.dockerfile.v0)COPY conf/etc/yum.repos.d/oracle-epel-ol9.repo /etc/yum.repos.d/oracle-epel-ol9.repo # buildkit
2025-10-02 04:36:40 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=7.2 ZBX_VERSION=7.2.13 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && INSTALL_PKGS="bash curl mysql nginx php-bcmath php-curl php-fpm php-gd php-ldap php-mbstring php-mysqlnd php-json php-xml findutils glibc-locale-source supervisor" && microdnf -y module enable --disablerepo "*" --enablerepo "ol9_appstream" --setopt=install_weak_deps=0 --setopt=keepcache=0 php:8.2 nginx:1.24 && microdnf -y install --disablerepo="*" --enablerepo="ol9_baseos_latest" --enablerepo="ol9_appstream" --enablerepo="ol9_developer_EPEL" --setopt=install_weak_deps=0 --setopt=keepcache=0 --best --nodocs ${INSTALL_PKGS} && groupadd --system --gid 1995 zabbix && useradd --system --comment "Zabbix monitoring system" -g zabbix --uid 1997 --shell /sbin/nologin --home-dir /var/lib/zabbix/ zabbix && mkdir -p ${ZABBIX_CONF_DIR} && mkdir -p ${ZABBIX_CONF_DIR}/web && mkdir -p ${ZABBIX_CONF_DIR}/web/certs && mkdir -p /var/lib/php/session && rm -f /etc/nginx/conf.d/*.conf && rm -f /etc/php-fpm.d/www.conf && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && cd ${ZABBIX_WWW_ROOT}/ && rm -f conf/zabbix.conf.php conf/maintenance.inc.php conf/zabbix.conf.php.example && rm -rf tests && find ${ZABBIX_WWW_ROOT}/locale -name '*.po' | xargs rm -f && find ${ZABBIX_WWW_ROOT}/locale -name '*.sh' | xargs rm -f && ln -s "${ZABBIX_CONF_DIR}/web/zabbix.conf.php" "${ZABBIX_WWW_ROOT}/conf/zabbix.conf.php" && ln -s "${ZABBIX_CONF_DIR}/web/maintenance.inc.php" "${ZABBIX_WWW_ROOT}/conf/maintenance.inc.php" && cat ${ZABBIX_WWW_ROOT}/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 ${ZABBIX_CONF_DIR}/ ${ZABBIX_WWW_ROOT}/include/defines.inc.php ${ZABBIX_WWW_ROOT}/modules/ && chgrp -R 0 ${ZABBIX_CONF_DIR}/ ${ZABBIX_WWW_ROOT}/include/defines.inc.php ${ZABBIX_WWW_ROOT}/modules/ && chmod -R g=u ${ZABBIX_CONF_DIR}/ ${ZABBIX_WWW_ROOT}/include/defines.inc.php ${ZABBIX_WWW_ROOT}/modules/ && chown --quiet -R zabbix:root /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf /var/log/nginx/ && chgrp -R 0 /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf /var/log/nginx/ && chmod -R g=u /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf /var/log/nginx/ && chown --quiet -R zabbix:root /var/lib/php/session/ && chgrp -R 0 /var/lib/php/session/ && chmod -R g=u /var/lib/php/session/ && microdnf -y remove findutils glibc-locale-source # buildkit
2025-10-02 04:36:40 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:8080/ping || exit 1"] "1m30s" "3s" "40s" "5s" '\x03'}
2025-10-02 04:36:40 UTC (buildkit.dockerfile.v0)EXPOSE &{[{{118 0} {118 0}}] 0xc000424180}
2025-10-02 04:36:40 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2025-10-02 04:36:40 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2025-10-02 04:36:40 UTC (buildkit.dockerfile.v0)USER 1997
2025-10-02 04:36:40 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2025-10-02 04:42:32 UTC
152 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
TERMxterm
ZABBIX_CONF_DIR/etc/zabbix
ZABBIX_WWW_ROOT/usr/share/zabbix
ZBX_SOURCEShttps://git.zabbix.com/scm/zbx/zabbix.git
ZBX_VERSION7.2.13
[#000] sha256:ecb83b09a418867c3572bbbf142e6346af9e39d392d18d601ecc594e5a1edcb1 - 30.1% (45.9 MB)
[#001] sha256:3b8a6bb7c79b5db0ea2c624c94480ac0ae5b7013d4a53f1a6fca63e552ad0c17 - 21.26% (32.4 MB)
[#002] sha256:e0b77161e5cb6529c78517ae4110466db71d008e72d90da0e2af276475a2702e - 0.0% (5.48 KB)
[#003] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#004] sha256:46aaa9ea010595565fa810c382cce0b49055abbe0d57cbf2ce82f276d9284625 - 48.63% (74.1 MB)
[#005] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#006] sha256:99cd4f13bc7c5050837818330b513d27fe38d269b328c6a39a8465252274a537 - 0.0% (3.15 KB)
ADD oraclelinux-9-slim-arm64v8-rootfs.tar.xz / # buildkit
2025-09-22 19:54:28 UTC (buildkit.dockerfile.v0)CMD ["/bin/bash"]
2025-10-02 04:35:37 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION=7.2
2025-10-02 04:35:37 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION=7.2.13
2025-10-02 04:35:37 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2025-10-02 04:35:37 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=7.2.13 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git ZABBIX_CONF_DIR=/etc/zabbix ZABBIX_WWW_ROOT=/usr/share/zabbix
2025-10-02 04:35: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/7.2/manual/installation/containers org.opencontainers.image.licenses=AGPL v3.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 SIA org.opencontainers.image.version=7.2.13
2025-10-02 04:35:37 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2025-10-02 04:35:37 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-7.2.13/ui /usr/share/zabbix # buildkit
2025-10-02 04:35:38 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2025-10-02 04:35:38 UTC (buildkit.dockerfile.v0)COPY conf/etc/yum.repos.d/oracle-epel-ol9.repo /etc/yum.repos.d/oracle-epel-ol9.repo # buildkit
2025-10-02 04:42:32 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=7.2 ZBX_VERSION=7.2.13 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && INSTALL_PKGS="bash curl mysql nginx php-bcmath php-curl php-fpm php-gd php-ldap php-mbstring php-mysqlnd php-json php-xml findutils glibc-locale-source supervisor" && microdnf -y module enable --disablerepo "*" --enablerepo "ol9_appstream" --setopt=install_weak_deps=0 --setopt=keepcache=0 php:8.2 nginx:1.24 && microdnf -y install --disablerepo="*" --enablerepo="ol9_baseos_latest" --enablerepo="ol9_appstream" --enablerepo="ol9_developer_EPEL" --setopt=install_weak_deps=0 --setopt=keepcache=0 --best --nodocs ${INSTALL_PKGS} && groupadd --system --gid 1995 zabbix && useradd --system --comment "Zabbix monitoring system" -g zabbix --uid 1997 --shell /sbin/nologin --home-dir /var/lib/zabbix/ zabbix && mkdir -p ${ZABBIX_CONF_DIR} && mkdir -p ${ZABBIX_CONF_DIR}/web && mkdir -p ${ZABBIX_CONF_DIR}/web/certs && mkdir -p /var/lib/php/session && rm -f /etc/nginx/conf.d/*.conf && rm -f /etc/php-fpm.d/www.conf && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && cd ${ZABBIX_WWW_ROOT}/ && rm -f conf/zabbix.conf.php conf/maintenance.inc.php conf/zabbix.conf.php.example && rm -rf tests && find ${ZABBIX_WWW_ROOT}/locale -name '*.po' | xargs rm -f && find ${ZABBIX_WWW_ROOT}/locale -name '*.sh' | xargs rm -f && ln -s "${ZABBIX_CONF_DIR}/web/zabbix.conf.php" "${ZABBIX_WWW_ROOT}/conf/zabbix.conf.php" && ln -s "${ZABBIX_CONF_DIR}/web/maintenance.inc.php" "${ZABBIX_WWW_ROOT}/conf/maintenance.inc.php" && cat ${ZABBIX_WWW_ROOT}/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 ${ZABBIX_CONF_DIR}/ ${ZABBIX_WWW_ROOT}/include/defines.inc.php ${ZABBIX_WWW_ROOT}/modules/ && chgrp -R 0 ${ZABBIX_CONF_DIR}/ ${ZABBIX_WWW_ROOT}/include/defines.inc.php ${ZABBIX_WWW_ROOT}/modules/ && chmod -R g=u ${ZABBIX_CONF_DIR}/ ${ZABBIX_WWW_ROOT}/include/defines.inc.php ${ZABBIX_WWW_ROOT}/modules/ && chown --quiet -R zabbix:root /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf /var/log/nginx/ && chgrp -R 0 /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf /var/log/nginx/ && chmod -R g=u /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf /var/log/nginx/ && chown --quiet -R zabbix:root /var/lib/php/session/ && chgrp -R 0 /var/lib/php/session/ && chmod -R g=u /var/lib/php/session/ && microdnf -y remove findutils glibc-locale-source # buildkit
2025-10-02 04:42:32 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:8080/ping || exit 1"] "1m30s" "3s" "40s" "5s" '\x03'}
2025-10-02 04:42:32 UTC (buildkit.dockerfile.v0)EXPOSE &{[{{118 0} {118 0}}] 0xc0003c6940}
2025-10-02 04:42:32 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2025-10-02 04:42:32 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2025-10-02 04:42:32 UTC (buildkit.dockerfile.v0)USER 1997
2025-10-02 04:42:32 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.