2026-03-20 10:57:01 UTC
69.6 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
TERMxterm
ZABBIX_CONF_DIR/etc/zabbix
ZABBIX_USER_HOME_DIR/var/lib/zabbix
ZABBIX_WWW_ROOT/usr/share/zabbix
ZBX_SOURCEShttps://git.zabbix.com/scm/zbx/zabbix.git
ZBX_VERSION6.0.45
[#000] sha256:d49a2dee86fb12766dd648402d010ca105846a41bd58738454e53780d4bb8e97 - 5.22% (3.63 MB)
[#001] sha256:7fa4b7341e57a9ca031ef0a2977fc142e412e135a6815d5f158ecbae946fe49e - 33.39% (23.2 MB)
[#002] sha256:e9087635d06a6efd1a796f030393a222f81424b26ff08e783724f0396cea4649 - 0.01% (5.16 KB)
[#003] sha256:a96b78d1099596860b6cad9987cca892ed6a34c1a078214f21f64d29203530d1 - 61.39% (42.7 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:420927f2fc1ab784b74a2a99d2466e6a7f64c63db285a4f2822999fb4b5c62a6 - 0.0% (3.12 KB)
ADD alpine-minirootfs-3.22.3-x86_64.tar.gz / # buildkit
2026-01-28 01:18:40 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2026-03-20 10:56:57 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2026-03-20 10:56:57 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2026-03-20 10:56:57 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2026-03-20 10:56:57 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.45 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git ZABBIX_CONF_DIR=/etc/zabbix ZABBIX_USER_HOME_DIR=/var/lib/zabbix ZABBIX_WWW_ROOT=/usr/share/zabbix
2026-03-20 10:56:57 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.45
2026-03-20 10:56:57 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2026-03-20 10:56:57 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.45/ui /usr/share/zabbix/ # buildkit
2026-03-20 10:56:57 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2026-03-20 10:57:00 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.45 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && INSTALL_PKGS="bash tzdata curl mariadb-client mariadb-connector-c nginx php83-bcmath php83-ctype php83-fpm php83-gd php83-gettext php83-json php83-ldap php83-mbstring php83-mysqli php83-session php83-simplexml php83-sockets php83-fileinfo php83-xmlreader php83-xmlwriter php83-openssl supervisor" && apk add --no-cache --clean-protected ${INSTALL_PKGS} && addgroup --system --gid 1995 zabbix && adduser --system --gecos "Zabbix monitoring system" --disabled-password --uid 1997 --ingroup zabbix --shell /sbin/nologin --home ${ZABBIX_USER_HOME_DIR} zabbix && mkdir -p ${ZABBIX_CONF_DIR} ${ZABBIX_CONF_DIR}/web ${ZABBIX_CONF_DIR}/web/certs ${ZABBIX_USER_HOME_DIR}/ /var/lib/php/session && rm -rf /etc/php83/php-fpm.d/www.conf /etc/nginx/http.d/*.conf && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && ln -sf "${ZABBIX_CONF_DIR}/web/zabbix.conf.php" "${ZABBIX_WWW_ROOT}/conf/zabbix.conf.php" && ln -sf "${ZABBIX_CONF_DIR}/web/maintenance.inc.php" "${ZABBIX_WWW_ROOT}/conf/maintenance.inc.php" && FIX_PERM_LIST=" ${ZABBIX_CONF_DIR}/ ${ZABBIX_WWW_ROOT}/include/defines.inc.php ${ZABBIX_WWW_ROOT}/modules/ ${ZABBIX_USER_HOME_DIR}/ /etc/nginx/ /etc/php83/php-fpm.d/ /etc/php83/php-fpm.conf /var/lib/php/session/ /var/lib/nginx/" && chown --quiet -R zabbix:0 ${FIX_PERM_LIST} && chmod -R g=u ${FIX_PERM_LIST} # buildkit
2026-03-20 10:57:00 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:8080/ping || exit 1"] "1m30s" "3s" "40s" "5s" '\x03'}
2026-03-20 10:57:00 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2026-03-20 10:57:01 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2026-03-20 10:57:01 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2026-03-20 10:57:01 UTC (buildkit.dockerfile.v0)USER 1997
2026-03-20 10:57:01 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2026-03-20 10:57:09 UTC
65.8 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
TERMxterm
ZABBIX_CONF_DIR/etc/zabbix
ZABBIX_USER_HOME_DIR/var/lib/zabbix
ZABBIX_WWW_ROOT/usr/share/zabbix
ZBX_SOURCEShttps://git.zabbix.com/scm/zbx/zabbix.git
ZBX_VERSION6.0.45
[#000] sha256:caca1d0e2f8affe80569328af55c755a8480801c5ee912e55aaa828c8209aa6e - 4.67% (3.07 MB)
[#001] sha256:41e0e5ea80684b9ea2ebdbe6cf4c7cda585ec2600d2633d1918b7416d0281b00 - 35.3% (23.2 MB)
[#002] sha256:e9087635d06a6efd1a796f030393a222f81424b26ff08e783724f0396cea4649 - 0.01% (5.16 KB)
[#003] sha256:0c2448a6c105c84f1a032faf0c2a2a0d162fb5872eef724c617bf628638cc6fe - 60.01% (39.5 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:1121e21d42e22b23bcf1c2a08b4bb29e413eadf36829f335ec38d29845b0f0cc - 0.0% (3.12 KB)
ADD alpine-minirootfs-3.22.3-armv7.tar.gz / # buildkit
2026-01-28 01:18:29 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2026-03-20 10:56:56 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2026-03-20 10:56:56 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2026-03-20 10:56:56 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2026-03-20 10:56:56 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.45 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git ZABBIX_CONF_DIR=/etc/zabbix ZABBIX_USER_HOME_DIR=/var/lib/zabbix ZABBIX_WWW_ROOT=/usr/share/zabbix
2026-03-20 10:56:56 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.45
2026-03-20 10:56:56 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2026-03-20 10:56:56 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.45/ui /usr/share/zabbix/ # buildkit
2026-03-20 10:56:56 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2026-03-20 10:57:09 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.45 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && INSTALL_PKGS="bash tzdata curl mariadb-client mariadb-connector-c nginx php83-bcmath php83-ctype php83-fpm php83-gd php83-gettext php83-json php83-ldap php83-mbstring php83-mysqli php83-session php83-simplexml php83-sockets php83-fileinfo php83-xmlreader php83-xmlwriter php83-openssl supervisor" && apk add --no-cache --clean-protected ${INSTALL_PKGS} && addgroup --system --gid 1995 zabbix && adduser --system --gecos "Zabbix monitoring system" --disabled-password --uid 1997 --ingroup zabbix --shell /sbin/nologin --home ${ZABBIX_USER_HOME_DIR} zabbix && mkdir -p ${ZABBIX_CONF_DIR} ${ZABBIX_CONF_DIR}/web ${ZABBIX_CONF_DIR}/web/certs ${ZABBIX_USER_HOME_DIR}/ /var/lib/php/session && rm -rf /etc/php83/php-fpm.d/www.conf /etc/nginx/http.d/*.conf && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && ln -sf "${ZABBIX_CONF_DIR}/web/zabbix.conf.php" "${ZABBIX_WWW_ROOT}/conf/zabbix.conf.php" && ln -sf "${ZABBIX_CONF_DIR}/web/maintenance.inc.php" "${ZABBIX_WWW_ROOT}/conf/maintenance.inc.php" && FIX_PERM_LIST=" ${ZABBIX_CONF_DIR}/ ${ZABBIX_WWW_ROOT}/include/defines.inc.php ${ZABBIX_WWW_ROOT}/modules/ ${ZABBIX_USER_HOME_DIR}/ /etc/nginx/ /etc/php83/php-fpm.d/ /etc/php83/php-fpm.conf /var/lib/php/session/ /var/lib/nginx/" && chown --quiet -R zabbix:0 ${FIX_PERM_LIST} && chmod -R g=u ${FIX_PERM_LIST} # buildkit
2026-03-20 10:57:09 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:8080/ping || exit 1"] "1m30s" "3s" "40s" "5s" '\x03'}
2026-03-20 10:57:09 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2026-03-20 10:57:09 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2026-03-20 10:57:09 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2026-03-20 10:57:09 UTC (buildkit.dockerfile.v0)USER 1997
2026-03-20 10:57:09 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2026-03-20 10:57:11 UTC
70 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
TERMxterm
ZABBIX_CONF_DIR/etc/zabbix
ZABBIX_USER_HOME_DIR/var/lib/zabbix
ZABBIX_WWW_ROOT/usr/share/zabbix
ZBX_SOURCEShttps://git.zabbix.com/scm/zbx/zabbix.git
ZBX_VERSION6.0.45
[#000] sha256:d741ee1608f399e21c72d05f0f818c348c6801af33aeb83523893d09dc153957 - 5.64% (3.95 MB)
[#001] sha256:b795c0e3b22fcd8b779d38120ad9a66534c922355c969c55af6f54c561b6a59c - 33.17% (23.2 MB)
[#002] sha256:e9087635d06a6efd1a796f030393a222f81424b26ff08e783724f0396cea4649 - 0.01% (5.16 KB)
[#003] sha256:34ee63bf3761578de18db14408d5fd8c4f36903bf718eb1614e6643b3278d9a3 - 61.19% (42.9 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:89f12ef44f0d4db8eb3148b23fe0b3d470e1caa21dced5646e0d7f6c1e231ce8 - 0.0% (3.12 KB)
ADD alpine-minirootfs-3.22.3-aarch64.tar.gz / # buildkit
2026-01-28 01:17:55 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2026-03-20 10:56:58 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2026-03-20 10:56:58 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2026-03-20 10:56:58 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2026-03-20 10:56:58 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.45 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git ZABBIX_CONF_DIR=/etc/zabbix ZABBIX_USER_HOME_DIR=/var/lib/zabbix ZABBIX_WWW_ROOT=/usr/share/zabbix
2026-03-20 10:56:58 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.45
2026-03-20 10:56:58 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2026-03-20 10:56:58 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.45/ui /usr/share/zabbix/ # buildkit
2026-03-20 10:56:58 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2026-03-20 10:57:11 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.45 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && INSTALL_PKGS="bash tzdata curl mariadb-client mariadb-connector-c nginx php83-bcmath php83-ctype php83-fpm php83-gd php83-gettext php83-json php83-ldap php83-mbstring php83-mysqli php83-session php83-simplexml php83-sockets php83-fileinfo php83-xmlreader php83-xmlwriter php83-openssl supervisor" && apk add --no-cache --clean-protected ${INSTALL_PKGS} && addgroup --system --gid 1995 zabbix && adduser --system --gecos "Zabbix monitoring system" --disabled-password --uid 1997 --ingroup zabbix --shell /sbin/nologin --home ${ZABBIX_USER_HOME_DIR} zabbix && mkdir -p ${ZABBIX_CONF_DIR} ${ZABBIX_CONF_DIR}/web ${ZABBIX_CONF_DIR}/web/certs ${ZABBIX_USER_HOME_DIR}/ /var/lib/php/session && rm -rf /etc/php83/php-fpm.d/www.conf /etc/nginx/http.d/*.conf && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && ln -sf "${ZABBIX_CONF_DIR}/web/zabbix.conf.php" "${ZABBIX_WWW_ROOT}/conf/zabbix.conf.php" && ln -sf "${ZABBIX_CONF_DIR}/web/maintenance.inc.php" "${ZABBIX_WWW_ROOT}/conf/maintenance.inc.php" && FIX_PERM_LIST=" ${ZABBIX_CONF_DIR}/ ${ZABBIX_WWW_ROOT}/include/defines.inc.php ${ZABBIX_WWW_ROOT}/modules/ ${ZABBIX_USER_HOME_DIR}/ /etc/nginx/ /etc/php83/php-fpm.d/ /etc/php83/php-fpm.conf /var/lib/php/session/ /var/lib/nginx/" && chown --quiet -R zabbix:0 ${FIX_PERM_LIST} && chmod -R g=u ${FIX_PERM_LIST} # buildkit
2026-03-20 10:57:11 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:8080/ping || exit 1"] "1m30s" "3s" "40s" "5s" '\x03'}
2026-03-20 10:57:11 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2026-03-20 10:57:11 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2026-03-20 10:57:11 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2026-03-20 10:57:11 UTC (buildkit.dockerfile.v0)USER 1997
2026-03-20 10:57:11 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2026-03-20 10:57:12 UTC
70.8 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
TERMxterm
ZABBIX_CONF_DIR/etc/zabbix
ZABBIX_USER_HOME_DIR/var/lib/zabbix
ZABBIX_WWW_ROOT/usr/share/zabbix
ZBX_SOURCEShttps://git.zabbix.com/scm/zbx/zabbix.git
ZBX_VERSION6.0.45
[#000] sha256:d7b7d5bab08f20b53e85395b2d6e793469e3acdbe8644bd234992524588b440f - 5.03% (3.56 MB)
[#001] sha256:53167c6fb87304bed9fbf9be9a12a54cb04e91e61494d027062eb76abe89e369 - 32.83% (23.2 MB)
[#002] sha256:e9087635d06a6efd1a796f030393a222f81424b26ff08e783724f0396cea4649 - 0.01% (5.16 KB)
[#003] sha256:3e03baae545fd345d95fa0d2ea86b771bb35efd13ab589feae693e0f8f95b188 - 62.13% (44 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:b7b7e0501602f23f4a3d0c46ab95bcb65b7372697578da353b2faf40c10fcb1d - 0.0% (3.12 KB)
ADD alpine-minirootfs-3.22.3-ppc64le.tar.gz / # buildkit
2026-01-28 01:17:35 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2026-03-20 10:56:57 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2026-03-20 10:56:57 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2026-03-20 10:56:57 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2026-03-20 10:56:57 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.45 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git ZABBIX_CONF_DIR=/etc/zabbix ZABBIX_USER_HOME_DIR=/var/lib/zabbix ZABBIX_WWW_ROOT=/usr/share/zabbix
2026-03-20 10:56:57 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.45
2026-03-20 10:56:57 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2026-03-20 10:56:57 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.45/ui /usr/share/zabbix/ # buildkit
2026-03-20 10:56:57 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2026-03-20 10:57:12 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.45 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && INSTALL_PKGS="bash tzdata curl mariadb-client mariadb-connector-c nginx php83-bcmath php83-ctype php83-fpm php83-gd php83-gettext php83-json php83-ldap php83-mbstring php83-mysqli php83-session php83-simplexml php83-sockets php83-fileinfo php83-xmlreader php83-xmlwriter php83-openssl supervisor" && apk add --no-cache --clean-protected ${INSTALL_PKGS} && addgroup --system --gid 1995 zabbix && adduser --system --gecos "Zabbix monitoring system" --disabled-password --uid 1997 --ingroup zabbix --shell /sbin/nologin --home ${ZABBIX_USER_HOME_DIR} zabbix && mkdir -p ${ZABBIX_CONF_DIR} ${ZABBIX_CONF_DIR}/web ${ZABBIX_CONF_DIR}/web/certs ${ZABBIX_USER_HOME_DIR}/ /var/lib/php/session && rm -rf /etc/php83/php-fpm.d/www.conf /etc/nginx/http.d/*.conf && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && ln -sf "${ZABBIX_CONF_DIR}/web/zabbix.conf.php" "${ZABBIX_WWW_ROOT}/conf/zabbix.conf.php" && ln -sf "${ZABBIX_CONF_DIR}/web/maintenance.inc.php" "${ZABBIX_WWW_ROOT}/conf/maintenance.inc.php" && FIX_PERM_LIST=" ${ZABBIX_CONF_DIR}/ ${ZABBIX_WWW_ROOT}/include/defines.inc.php ${ZABBIX_WWW_ROOT}/modules/ ${ZABBIX_USER_HOME_DIR}/ /etc/nginx/ /etc/php83/php-fpm.d/ /etc/php83/php-fpm.conf /var/lib/php/session/ /var/lib/nginx/" && chown --quiet -R zabbix:0 ${FIX_PERM_LIST} && chmod -R g=u ${FIX_PERM_LIST} # buildkit
2026-03-20 10:57:12 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:8080/ping || exit 1"] "1m30s" "3s" "40s" "5s" '\x03'}
2026-03-20 10:57:12 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2026-03-20 10:57:12 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2026-03-20 10:57:12 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2026-03-20 10:57:12 UTC (buildkit.dockerfile.v0)USER 1997
2026-03-20 10:57:12 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2026-03-20 10:57:25 UTC
71 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
TERMxterm
ZABBIX_CONF_DIR/etc/zabbix
ZABBIX_USER_HOME_DIR/var/lib/zabbix
ZABBIX_WWW_ROOT/usr/share/zabbix
ZBX_SOURCEShttps://git.zabbix.com/scm/zbx/zabbix.git
ZBX_VERSION6.0.45
[#000] sha256:dab48b8d1bab09fede3f54264828e67466f10d64acc37d9412190034dbcbf61f - 4.9% (3.48 MB)
[#001] sha256:7da3eca30923afb649b880b3ce29d9ab2f38dbc245936a934daf74b3c9d5f166 - 32.7% (23.2 MB)
[#002] sha256:e9087635d06a6efd1a796f030393a222f81424b26ff08e783724f0396cea4649 - 0.01% (5.16 KB)
[#003] sha256:2125db6958188b09df89ff9074734d96e507b94dfa781a182d7f3d5270d5196a - 62.39% (44.3 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:9b49f70364d4cccce9edff874f15ecfb57cecd4a6bc724c822924cfd9ed87e6a - 0.0% (3.12 KB)
ADD alpine-minirootfs-3.22.3-s390x.tar.gz / # buildkit
2026-01-28 01:17:06 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2026-03-20 10:56:58 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2026-03-20 10:56:58 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2026-03-20 10:56:58 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2026-03-20 10:56:58 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.45 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git ZABBIX_CONF_DIR=/etc/zabbix ZABBIX_USER_HOME_DIR=/var/lib/zabbix ZABBIX_WWW_ROOT=/usr/share/zabbix
2026-03-20 10:56:58 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.45
2026-03-20 10:56:58 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2026-03-20 10:56:58 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.45/ui /usr/share/zabbix/ # buildkit
2026-03-20 10:56:58 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2026-03-20 10:57:25 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.45 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && INSTALL_PKGS="bash tzdata curl mariadb-client mariadb-connector-c nginx php83-bcmath php83-ctype php83-fpm php83-gd php83-gettext php83-json php83-ldap php83-mbstring php83-mysqli php83-session php83-simplexml php83-sockets php83-fileinfo php83-xmlreader php83-xmlwriter php83-openssl supervisor" && apk add --no-cache --clean-protected ${INSTALL_PKGS} && addgroup --system --gid 1995 zabbix && adduser --system --gecos "Zabbix monitoring system" --disabled-password --uid 1997 --ingroup zabbix --shell /sbin/nologin --home ${ZABBIX_USER_HOME_DIR} zabbix && mkdir -p ${ZABBIX_CONF_DIR} ${ZABBIX_CONF_DIR}/web ${ZABBIX_CONF_DIR}/web/certs ${ZABBIX_USER_HOME_DIR}/ /var/lib/php/session && rm -rf /etc/php83/php-fpm.d/www.conf /etc/nginx/http.d/*.conf && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && ln -sf "${ZABBIX_CONF_DIR}/web/zabbix.conf.php" "${ZABBIX_WWW_ROOT}/conf/zabbix.conf.php" && ln -sf "${ZABBIX_CONF_DIR}/web/maintenance.inc.php" "${ZABBIX_WWW_ROOT}/conf/maintenance.inc.php" && FIX_PERM_LIST=" ${ZABBIX_CONF_DIR}/ ${ZABBIX_WWW_ROOT}/include/defines.inc.php ${ZABBIX_WWW_ROOT}/modules/ ${ZABBIX_USER_HOME_DIR}/ /etc/nginx/ /etc/php83/php-fpm.d/ /etc/php83/php-fpm.conf /var/lib/php/session/ /var/lib/nginx/" && chown --quiet -R zabbix:0 ${FIX_PERM_LIST} && chmod -R g=u ${FIX_PERM_LIST} # buildkit
2026-03-20 10:57:25 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:8080/ping || exit 1"] "1m30s" "3s" "40s" "5s" '\x03'}
2026-03-20 10:57:25 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2026-03-20 10:57:25 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2026-03-20 10:57:25 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2026-03-20 10:57:25 UTC (buildkit.dockerfile.v0)USER 1997
2026-03-20 10:57:25 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.