2024-04-22 10:28:54 UTC
145 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.0.29
[#000] sha256:3c645031de2917ade93ec54b118d5d3e45de72ef580b8f419a8cdc41e01d042c - 19.38% (28.2 MB)
[#001] sha256:b75e34dc56ca106d2be8485f55277f3f1e2e7a6d19bfc037d887ef80649deb77 - 19.82% (28.8 MB)
[#002] sha256:990fce0500a4056419b10a35ad80c03cdf86d35d8d16cdbead979a5cbfcb71d2 - 0.0% (5.09 KB)
[#003] sha256:bf18ef97102afe809ab00008d499b10e01be5ebde720ae6b835f42f522b7b546 - 60.79% (88.3 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:3ddc7b243f80be8760fdbda0c0d543027a557b8482892bb84ad61bf011cb4d90 - 0.0% (2.85 KB)
/bin/sh -c #(nop) ARG RELEASE
2024-04-10 18:52:02 UTC/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
2024-04-10 18:52:02 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
2024-04-10 18:52:02 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04
2024-04-10 18:52:04 UTC/bin/sh -c #(nop) ADD file:3bd10da0673e2e72cb06a1f64a9df49a36341df39b0f762e3d1b38ee4de296fa in /
2024-04-10 18:52:04 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.29 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-04-22 10:09:43 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 LLC org.opencontainers.image.version=6.0.29
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.29/ui /usr/share/zabbix # buildkit
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2024-04-22 10:28:53 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.29 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && echo "#!/bin/sh\nexit 101" > /usr/sbin/policy-rc.d && INSTALL_PKGS="bash tzdata ca-certificates curl mysql-client nginx locales libldap-common php8.1-bcmath php8.1-fpm php8.1-gd php8.1-ldap php8.1-mbstring php8.1-mysql php8.1-xml supervisor" && INSTALL_TEMP_PKGS="gpg ca-certificates dirmngr curl gpg-agent" && apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install ${INSTALL_TEMP_PKGS} && GNUPGHOME="$(mktemp -d)"; export GNUPGHOME && curl --tlsv1.2 -sSf -L https://nginx.org/keys/nginx_signing.key | gpg --dearmor > /etc/apt/trusted.gpg.d/nginx.gpg && gpg --dry-run --quiet --import --import-options import-show /etc/apt/trusted.gpg.d/nginx.gpg && DISTRIB_CODENAME=$(/bin/bash -c 'source /etc/lsb-release && echo $DISTRIB_CODENAME') && echo "deb https://nginx.org/packages/ubuntu $DISTRIB_CODENAME nginx" > /etc/apt/sources.list.d/nginx.list && echo "Package: *\nPin: origin nginx.org\nPin: release o=nginx\nPin-Priority: 900\n" > /etc/apt/preferences.d/99nginx && gpgconf --kill all && rm -rf "$GNUPGHOME" && apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --no-install-recommends install ${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 /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 -rf /var/cache/nginx/ && rm -f /etc/php/8.1/fpm/pool.d/www.conf && rm -f /etc/php/8.1/fpm/php-fpm.conf.dpkg-dist && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && 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" && mkdir -p /var/lib/locales/supported.d/ && rm -f /var/lib/locales/supported.d/local && 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 "{}.UTF-8 UTF-8" >> /var/lib/locales/supported.d/local' && dpkg-reconfigure locales && 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/8.1/fpm/php-fpm.conf /etc/php/8.1/fpm/pool.d/ && chgrp -R 0 /etc/nginx/ /etc/php/8.1/fpm/php-fpm.conf /etc/php/8.1/fpm/pool.d/ && chmod -R g=u /etc/nginx/ /etc/php/8.1/fpm/php-fpm.conf /etc/php/8.1/fpm/pool.d/ && chown --quiet -R zabbix:root /var/lib/php/session/ && chgrp -R 0 /var/lib/php/session/ && chmod -R g=u /var/lib/php/session/ && DEBIAN_FRONTEND=noninteractive apt-get -y purge gpg dirmngr gpg-agent && apt-get -y autoremove && apt-get -y clean # buildkit
2024-04-22 10:28:53 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2024-04-22 10:28:54 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2024-04-22 10:28:54 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2024-04-22 10:28:54 UTC (buildkit.dockerfile.v0)USER 1997
2024-04-22 10:28:54 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2024-04-22 10:19:07 UTC
140 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.0.29
[#000] sha256:b693c0578bb86a6111c6b9770eb9fd6826cee6d2825b5869e3aa66e53454166a - 18.15% (25.4 MB)
[#001] sha256:04a5f81da39d56ea0c7fcb74634dc12824eb807bc930d7c2738877232104cde0 - 20.58% (28.8 MB)
[#002] sha256:990fce0500a4056419b10a35ad80c03cdf86d35d8d16cdbead979a5cbfcb71d2 - 0.0% (5.09 KB)
[#003] sha256:ea50ae755898991be0ac5065de38faafa5558b422b1d5ec4bd2296114d56300a - 61.26% (85.7 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:4a4ee6d18dfe550f3c0cff8e7216b6987901731d9f4c1bb3f866f36be37b680b - 0.0% (2.85 KB)
/bin/sh -c #(nop) ARG RELEASE
2024-04-10 19:09:04 UTC/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
2024-04-10 19:09:04 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
2024-04-10 19:09:04 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04
2024-04-10 19:09:15 UTC/bin/sh -c #(nop) ADD file:f06c8189c311b0927a0efa31910e5bea10b17d8efb376240376fef41170e3a6a in /
2024-04-10 19:09:16 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2024-04-22 10:09:42 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2024-04-22 10:09:42 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2024-04-22 10:09:42 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-04-22 10:09:42 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.29 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-04-22 10:09:42 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 LLC org.opencontainers.image.version=6.0.29
2024-04-22 10:09:42 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2024-04-22 10:09:42 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.29/ui /usr/share/zabbix # buildkit
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2024-04-22 10:19:07 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.29 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && echo "#!/bin/sh\nexit 101" > /usr/sbin/policy-rc.d && INSTALL_PKGS="bash tzdata ca-certificates curl mysql-client nginx locales libldap-common php8.1-bcmath php8.1-fpm php8.1-gd php8.1-ldap php8.1-mbstring php8.1-mysql php8.1-xml supervisor" && INSTALL_TEMP_PKGS="gpg ca-certificates dirmngr curl gpg-agent" && apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install ${INSTALL_TEMP_PKGS} && GNUPGHOME="$(mktemp -d)"; export GNUPGHOME && curl --tlsv1.2 -sSf -L https://nginx.org/keys/nginx_signing.key | gpg --dearmor > /etc/apt/trusted.gpg.d/nginx.gpg && gpg --dry-run --quiet --import --import-options import-show /etc/apt/trusted.gpg.d/nginx.gpg && DISTRIB_CODENAME=$(/bin/bash -c 'source /etc/lsb-release && echo $DISTRIB_CODENAME') && echo "deb https://nginx.org/packages/ubuntu $DISTRIB_CODENAME nginx" > /etc/apt/sources.list.d/nginx.list && echo "Package: *\nPin: origin nginx.org\nPin: release o=nginx\nPin-Priority: 900\n" > /etc/apt/preferences.d/99nginx && gpgconf --kill all && rm -rf "$GNUPGHOME" && apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --no-install-recommends install ${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 /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 -rf /var/cache/nginx/ && rm -f /etc/php/8.1/fpm/pool.d/www.conf && rm -f /etc/php/8.1/fpm/php-fpm.conf.dpkg-dist && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && 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" && mkdir -p /var/lib/locales/supported.d/ && rm -f /var/lib/locales/supported.d/local && 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 "{}.UTF-8 UTF-8" >> /var/lib/locales/supported.d/local' && dpkg-reconfigure locales && 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/8.1/fpm/php-fpm.conf /etc/php/8.1/fpm/pool.d/ && chgrp -R 0 /etc/nginx/ /etc/php/8.1/fpm/php-fpm.conf /etc/php/8.1/fpm/pool.d/ && chmod -R g=u /etc/nginx/ /etc/php/8.1/fpm/php-fpm.conf /etc/php/8.1/fpm/pool.d/ && chown --quiet -R zabbix:root /var/lib/php/session/ && chgrp -R 0 /var/lib/php/session/ && chmod -R g=u /var/lib/php/session/ && DEBIAN_FRONTEND=noninteractive apt-get -y purge gpg dirmngr gpg-agent && apt-get -y autoremove && apt-get -y clean # buildkit
2024-04-22 10:19:07 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2024-04-22 10:19:07 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2024-04-22 10:19:07 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2024-04-22 10:19:07 UTC (buildkit.dockerfile.v0)USER 1997
2024-04-22 10:19:07 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2024-04-22 10:37:45 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.0.29
[#000] sha256:70104cd59e2a443b9d9a13a6bce3bbf1ae78261c4198a40bf69d6e0515abe06a - 18.27% (26.1 MB)
[#001] sha256:582a75733753f9667c3022682e04ce8a303f8d44ea0125128b086a7da52ffa7c - 20.17% (28.8 MB)
[#002] sha256:990fce0500a4056419b10a35ad80c03cdf86d35d8d16cdbead979a5cbfcb71d2 - 0.0% (5.09 KB)
[#003] sha256:8bd25c0e1dfdc9886a8049902d460c6656a2703b60150ee19f453627986f1d34 - 61.55% (87.9 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:b4152e398cbfdb7671bdd943ae6d55d2b9e12faf9749825cd6676e996fe9f54c - 0.0% (2.85 KB)
/bin/sh -c #(nop) ARG RELEASE
2024-04-10 18:26:15 UTC/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
2024-04-10 18:26:15 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
2024-04-10 18:26:15 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04
2024-04-10 18:26:17 UTC/bin/sh -c #(nop) ADD file:5523c8e2dfa5286893a32b66bdb3395b76e282d86d79b7320a5855e8f55481e1 in /
2024-04-10 18:26:17 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.29 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-04-22 10:09:43 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 LLC org.opencontainers.image.version=6.0.29
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.29/ui /usr/share/zabbix # buildkit
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2024-04-22 10:37:45 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.29 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && echo "#!/bin/sh\nexit 101" > /usr/sbin/policy-rc.d && INSTALL_PKGS="bash tzdata ca-certificates curl mysql-client nginx locales libldap-common php8.1-bcmath php8.1-fpm php8.1-gd php8.1-ldap php8.1-mbstring php8.1-mysql php8.1-xml supervisor" && INSTALL_TEMP_PKGS="gpg ca-certificates dirmngr curl gpg-agent" && apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install ${INSTALL_TEMP_PKGS} && GNUPGHOME="$(mktemp -d)"; export GNUPGHOME && curl --tlsv1.2 -sSf -L https://nginx.org/keys/nginx_signing.key | gpg --dearmor > /etc/apt/trusted.gpg.d/nginx.gpg && gpg --dry-run --quiet --import --import-options import-show /etc/apt/trusted.gpg.d/nginx.gpg && DISTRIB_CODENAME=$(/bin/bash -c 'source /etc/lsb-release && echo $DISTRIB_CODENAME') && echo "deb https://nginx.org/packages/ubuntu $DISTRIB_CODENAME nginx" > /etc/apt/sources.list.d/nginx.list && echo "Package: *\nPin: origin nginx.org\nPin: release o=nginx\nPin-Priority: 900\n" > /etc/apt/preferences.d/99nginx && gpgconf --kill all && rm -rf "$GNUPGHOME" && apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --no-install-recommends install ${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 /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 -rf /var/cache/nginx/ && rm -f /etc/php/8.1/fpm/pool.d/www.conf && rm -f /etc/php/8.1/fpm/php-fpm.conf.dpkg-dist && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && 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" && mkdir -p /var/lib/locales/supported.d/ && rm -f /var/lib/locales/supported.d/local && 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 "{}.UTF-8 UTF-8" >> /var/lib/locales/supported.d/local' && dpkg-reconfigure locales && 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/8.1/fpm/php-fpm.conf /etc/php/8.1/fpm/pool.d/ && chgrp -R 0 /etc/nginx/ /etc/php/8.1/fpm/php-fpm.conf /etc/php/8.1/fpm/pool.d/ && chmod -R g=u /etc/nginx/ /etc/php/8.1/fpm/php-fpm.conf /etc/php/8.1/fpm/pool.d/ && chown --quiet -R zabbix:root /var/lib/php/session/ && chgrp -R 0 /var/lib/php/session/ && chmod -R g=u /var/lib/php/session/ && DEBIAN_FRONTEND=noninteractive apt-get -y purge gpg dirmngr gpg-agent && apt-get -y autoremove && apt-get -y clean # buildkit
2024-04-22 10:37:45 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2024-04-22 10:37:45 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2024-04-22 10:37:45 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2024-04-22 10:37:45 UTC (buildkit.dockerfile.v0)USER 1997
2024-04-22 10:37:45 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2024-04-22 10:27:53 UTC
144 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.0.29
[#000] sha256:e6e1eba39e4ebf768879e23d5cbf0eb1ad6db055027ddec35427160ce576c3d4 - 18.54% (26.7 MB)
[#001] sha256:e28de905ae6566269ca5a8ca26a17c28dbe70d6332815c7ea0e3c24266e22e77 - 20.0% (28.8 MB)
[#002] sha256:990fce0500a4056419b10a35ad80c03cdf86d35d8d16cdbead979a5cbfcb71d2 - 0.0% (5.09 KB)
[#003] sha256:599a3e1331c08ac007c09353e8883dcc4129e7fce01428299794204ee8fde6a1 - 61.45% (88.5 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:8b141f4fc80b909179049cc066807cb7131452d6cef325125dd585a18aefdf4b - 0.0% (2.85 KB)
/bin/sh -c #(nop) ARG RELEASE
2024-04-10 19:09:02 UTC/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
2024-04-10 19:09:02 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
2024-04-10 19:09:02 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04
2024-04-10 19:09:05 UTC/bin/sh -c #(nop) ADD file:7691b95908cace61ceeec91c44a1a37e7dc2fc3ab5a5fd89f493cefdff9e840e in /
2024-04-10 19:09:05 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.29 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-04-22 10:09:43 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 LLC org.opencontainers.image.version=6.0.29
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.29/ui /usr/share/zabbix # buildkit
2024-04-22 10:09:43 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2024-04-22 10:27:53 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.29 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && echo "#!/bin/sh\nexit 101" > /usr/sbin/policy-rc.d && INSTALL_PKGS="bash tzdata ca-certificates curl mysql-client nginx locales libldap-common php8.1-bcmath php8.1-fpm php8.1-gd php8.1-ldap php8.1-mbstring php8.1-mysql php8.1-xml supervisor" && INSTALL_TEMP_PKGS="gpg ca-certificates dirmngr curl gpg-agent" && apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install ${INSTALL_TEMP_PKGS} && GNUPGHOME="$(mktemp -d)"; export GNUPGHOME && curl --tlsv1.2 -sSf -L https://nginx.org/keys/nginx_signing.key | gpg --dearmor > /etc/apt/trusted.gpg.d/nginx.gpg && gpg --dry-run --quiet --import --import-options import-show /etc/apt/trusted.gpg.d/nginx.gpg && DISTRIB_CODENAME=$(/bin/bash -c 'source /etc/lsb-release && echo $DISTRIB_CODENAME') && echo "deb https://nginx.org/packages/ubuntu $DISTRIB_CODENAME nginx" > /etc/apt/sources.list.d/nginx.list && echo "Package: *\nPin: origin nginx.org\nPin: release o=nginx\nPin-Priority: 900\n" > /etc/apt/preferences.d/99nginx && gpgconf --kill all && rm -rf "$GNUPGHOME" && apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --no-install-recommends install ${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 /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 -rf /var/cache/nginx/ && rm -f /etc/php/8.1/fpm/pool.d/www.conf && rm -f /etc/php/8.1/fpm/php-fpm.conf.dpkg-dist && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && 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" && mkdir -p /var/lib/locales/supported.d/ && rm -f /var/lib/locales/supported.d/local && 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 "{}.UTF-8 UTF-8" >> /var/lib/locales/supported.d/local' && dpkg-reconfigure locales && 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/8.1/fpm/php-fpm.conf /etc/php/8.1/fpm/pool.d/ && chgrp -R 0 /etc/nginx/ /etc/php/8.1/fpm/php-fpm.conf /etc/php/8.1/fpm/pool.d/ && chmod -R g=u /etc/nginx/ /etc/php/8.1/fpm/php-fpm.conf /etc/php/8.1/fpm/pool.d/ && chown --quiet -R zabbix:root /var/lib/php/session/ && chgrp -R 0 /var/lib/php/session/ && chmod -R g=u /var/lib/php/session/ && DEBIAN_FRONTEND=noninteractive apt-get -y purge gpg dirmngr gpg-agent && apt-get -y autoremove && apt-get -y clean # buildkit
2024-04-22 10:27:53 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2024-04-22 10:27:53 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2024-04-22 10:27:53 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2024-04-22 10:27:53 UTC (buildkit.dockerfile.v0)USER 1997
2024-04-22 10:27:53 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.