2026-01-14 18:32:33 UTC
134 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_VERSION6.0.43
[#000] sha256:c2e767aab2205ab343fe1f3b3f821e68b94b1fc68141cc29a08552cdccfc32ec - 29.1% (39 MB)
[#001] sha256:2a94797101f9a04262952453bc1994ba269a2d9f3fc2684c32ec789179a0bb56 - 21.78% (29.2 MB)
[#002] sha256:15fbe4110ecc4ea94c8b1d1b2710c9a27b88958896854208b33b5ecf3118868a - 0.0% (5.14 KB)
[#003] sha256:f8c998d1747002cd9f5ebefcf75aca86c6c967682b2bc82bb1a2ef7d0638b9f6 - 49.12% (65.8 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:403d710b4556f24718f05c6eb1d004666e3db36c288b2758b86fff4fad01e235 - 0.0% (3.11 KB)
/bin/sh -c #(nop) ADD file:0513d35b3ff4d551d60e2e9ddfcd679643fc22f66d24b574cadb61d4963f0bdc in /
2026-01-14 03:09:12 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version="1.0" org.label-schema.name="CentOS Stream 9 Minimal Image" org.label-schema.vendor="CentOS" org.label-schema.license="GPLv2" org.label-schema.build-date="20260114"
2026-01-14 03:09:12 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION=6.0
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION=6.0.43
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.43 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git ZABBIX_CONF_DIR=/etc/zabbix ZABBIX_WWW_ROOT=/usr/share/zabbix
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)LABEL org.opencontainers.image.authors=Alexey Pustovalov <[email protected]> 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.0/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 SIA org.opencontainers.image.version=6.0.43
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.43/ui /usr/share/zabbix # buildkit
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2026-01-14 18:32:32 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.43 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && 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 shadow-utils supervisor" && microdnf -y module enable --disablerepo "*" --enablerepo "appstream" --setopt=install_weak_deps=0 --setopt=keepcache=0 php:8.3 nginx:1.26 && microdnf -y install --disablerepo "*" --enablerepo "extras-common" --setopt=install_weak_deps=0 --setopt=keepcache=0 --best --nodocs epel-release && microdnf -y install --disablerepo "*" --enablerepo "baseos" --enablerepo "appstream" --enablerepo="epel" --setopt=install_weak_deps=0 --setopt=keepcache=0 --best --nodocs ${INSTALL_PKGS} && microdnf -y reinstall --enablerepo "baseos" --setopt=install_weak_deps=0 --setopt=keepcache=0 --best --setopt=tsflags=nodocs tzdata && 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
2026-01-14 18:32:32 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:8080/ping || exit 1"] "1m30s" "3s" "40s" "5s" '\x03'}
2026-01-14 18:32:32 UTC (buildkit.dockerfile.v0)EXPOSE [8080/tcp 8443/tcp]
2026-01-14 18:32:33 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2026-01-14 18:32:33 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2026-01-14 18:32:33 UTC (buildkit.dockerfile.v0)USER 1997
2026-01-14 18:32:33 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2026-01-14 18:37:26 UTC
132 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_VERSION6.0.43
[#000] sha256:1af0d02cfcf0ebb23d814ff4d092fb99bbdc81da22fb357c6aa7d85bb484893c - 28.15% (37.1 MB)
[#001] sha256:f4b486de65537218ab9d2592212521860c6dcb582a1d9c03abe738451ee32a6d - 22.11% (29.2 MB)
[#002] sha256:15fbe4110ecc4ea94c8b1d1b2710c9a27b88958896854208b33b5ecf3118868a - 0.0% (5.14 KB)
[#003] sha256:172488d481c3df20106838d88e6f95c495f8d34ef556fcc046f711a2ba758638 - 49.73% (65.6 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:5918a770bddc454a957822e45174ae5c43dd702ae498856b1665b8d8dc3f39a9 - 0.0% (3.11 KB)
/bin/sh -c #(nop) ADD file:11c4a900f1ca8ac79be614671b42f0b3f9ce577890788e03153286d6028f899e in /
2026-01-14 03:08:34 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version="1.0" org.label-schema.name="CentOS Stream 9 Minimal Image" org.label-schema.vendor="CentOS" org.label-schema.license="GPLv2" org.label-schema.build-date="20260114"
2026-01-14 03:08:34 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION=6.0
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION=6.0.43
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.43 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git ZABBIX_CONF_DIR=/etc/zabbix ZABBIX_WWW_ROOT=/usr/share/zabbix
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)LABEL org.opencontainers.image.authors=Alexey Pustovalov <[email protected]> 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.0/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 SIA org.opencontainers.image.version=6.0.43
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.43/ui /usr/share/zabbix # buildkit
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2026-01-14 18:37:25 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.43 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && 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 shadow-utils supervisor" && microdnf -y module enable --disablerepo "*" --enablerepo "appstream" --setopt=install_weak_deps=0 --setopt=keepcache=0 php:8.3 nginx:1.26 && microdnf -y install --disablerepo "*" --enablerepo "extras-common" --setopt=install_weak_deps=0 --setopt=keepcache=0 --best --nodocs epel-release && microdnf -y install --disablerepo "*" --enablerepo "baseos" --enablerepo "appstream" --enablerepo="epel" --setopt=install_weak_deps=0 --setopt=keepcache=0 --best --nodocs ${INSTALL_PKGS} && microdnf -y reinstall --enablerepo "baseos" --setopt=install_weak_deps=0 --setopt=keepcache=0 --best --setopt=tsflags=nodocs tzdata && 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
2026-01-14 18:37:25 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:8080/ping || exit 1"] "1m30s" "3s" "40s" "5s" '\x03'}
2026-01-14 18:37:25 UTC (buildkit.dockerfile.v0)EXPOSE [8080/tcp 8443/tcp]
2026-01-14 18:37:26 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2026-01-14 18:37:26 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2026-01-14 18:37:26 UTC (buildkit.dockerfile.v0)USER 1997
2026-01-14 18:37:26 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2026-01-14 18:36:30 UTC
140 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_VERSION6.0.43
[#000] sha256:9e427b89873391cbe9005dba2ef09f31a2266d9b1680b2310f842c3e6d09be74 - 30.73% (43.1 MB)
[#001] sha256:2bc8f657ff7b8e4037db5fe31c21900bbac22e6a8d9ebed8c7b78d62b50c19a5 - 20.78% (29.2 MB)
[#002] sha256:15fbe4110ecc4ea94c8b1d1b2710c9a27b88958896854208b33b5ecf3118868a - 0.0% (5.14 KB)
[#003] sha256:590cfd0baebee583e80b1e5e1f9b8c1e4174a69c3eccc5a2ef6aede70f80c6c6 - 48.49% (68 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:2ce32e3594229d70f99c5e4908db465128fcdc1b0918d3181116bb355a42739e - 0.0% (3.11 KB)
/bin/sh -c #(nop) ADD file:d7d0b63392bd3f9ded91018790163c96127447f5cf9fb617ac387d3bc34d46a1 in /
2026-01-14 03:08:46 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version="1.0" org.label-schema.name="CentOS Stream 9 Minimal Image" org.label-schema.vendor="CentOS" org.label-schema.license="GPLv2" org.label-schema.build-date="20260114"
2026-01-14 03:08:47 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION=6.0
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION=6.0.43
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.43 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git ZABBIX_CONF_DIR=/etc/zabbix ZABBIX_WWW_ROOT=/usr/share/zabbix
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)LABEL org.opencontainers.image.authors=Alexey Pustovalov <[email protected]> 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.0/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 SIA org.opencontainers.image.version=6.0.43
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.43/ui /usr/share/zabbix # buildkit
2026-01-14 18:31:03 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2026-01-14 18:36:30 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.43 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && 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 shadow-utils supervisor" && microdnf -y module enable --disablerepo "*" --enablerepo "appstream" --setopt=install_weak_deps=0 --setopt=keepcache=0 php:8.3 nginx:1.26 && microdnf -y install --disablerepo "*" --enablerepo "extras-common" --setopt=install_weak_deps=0 --setopt=keepcache=0 --best --nodocs epel-release && microdnf -y install --disablerepo "*" --enablerepo "baseos" --enablerepo "appstream" --enablerepo="epel" --setopt=install_weak_deps=0 --setopt=keepcache=0 --best --nodocs ${INSTALL_PKGS} && microdnf -y reinstall --enablerepo "baseos" --setopt=install_weak_deps=0 --setopt=keepcache=0 --best --setopt=tsflags=nodocs tzdata && 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
2026-01-14 18:36:30 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:8080/ping || exit 1"] "1m30s" "3s" "40s" "5s" '\x03'}
2026-01-14 18:36:30 UTC (buildkit.dockerfile.v0)EXPOSE [8080/tcp 8443/tcp]
2026-01-14 18:36:30 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2026-01-14 18:36:30 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2026-01-14 18:36:30 UTC (buildkit.dockerfile.v0)USER 1997
2026-01-14 18:36:30 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.