2024-07-09 11:42:48 UTC
146 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.31
[#000] sha256:3713021b02770a720dea9b54c03d0ed83e03a2ef5dce2898c56a327fee9a8bca - 19.35% (28.2 MB)
[#001] sha256:b90fb1b4e2faa7c925b1874c2cd0ce4b78f9f83e5b4bb4f2e8d9f8eb8405785b - 19.84% (28.9 MB)
[#002] sha256:b7361245a6fc40e4051c14592748d7fb43235f7b6ed691670b2c8f62d3da1adc - 0.0% (5.09 KB)
[#003] sha256:608a0def7c5f8f8d49de03622f3f1ba51734cb834c7e9fa07d670cf1278b087a - 60.81% (88.5 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:6db781120eca0a2089be41ac248aa90514fdd0fdf98823deecfc9683ac0a0c5a - 0.0% (2.89 KB)
/bin/sh -c #(nop) ARG RELEASE
2024-06-27 20:10:10 UTC/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
2024-06-27 20:10:10 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
2024-06-27 20:10:10 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04
2024-06-27 20:10:12 UTC/bin/sh -c #(nop) ADD file:d5da92199726e42da09a6f75a778befb607fe3f79e4afaf7ef5188329b26b386 in /
2024-06-27 20:10:12 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION=6.0
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION=6.0.31
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.31 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-07-09 11:31: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 SIA org.opencontainers.image.version=6.0.31
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.31/ui /usr/share/zabbix # buildkit
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2024-07-09 11:42:48 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.31 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-07-09 11:42:48 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2024-07-09 11:42:48 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2024-07-09 11:42:48 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2024-07-09 11:42:48 UTC (buildkit.dockerfile.v0)USER 1997
2024-07-09 11:42:48 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2024-07-09 11:41:44 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.31
[#000] sha256:f6d2cceb710e897ef3b81e28ea21268aa6d28deae90ac1ab9602ff738c88a650 - 18.14% (25.4 MB)
[#001] sha256:84c390e5be73fd907e9b31dc81f0f405b8e22cd73d6588273fbbf16c786c200c - 20.63% (28.9 MB)
[#002] sha256:b7361245a6fc40e4051c14592748d7fb43235f7b6ed691670b2c8f62d3da1adc - 0.0% (5.09 KB)
[#003] sha256:d58a2524926b7830d980b51f720cb250a968128df95bea3f66fc56cf71701786 - 61.22% (85.7 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:4e0c2b5a43fd79d15ae976e62c47e90d0e5d4115d2baed8be18e311a07b58beb - 0.0% (2.9 KB)
/bin/sh -c #(nop) ARG RELEASE
2024-06-27 19:33:13 UTC/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
2024-06-27 19:33:13 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
2024-06-27 19:33:13 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04
2024-06-27 19:33:16 UTC/bin/sh -c #(nop) ADD file:967120bb21c0fbaf9bf6c8fcb7b292d31ec4812e538714e8beb0a6e013eae873 in /
2024-06-27 19:33:16 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION=6.0
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION=6.0.31
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.31 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-07-09 11:31: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 SIA org.opencontainers.image.version=6.0.31
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.31/ui /usr/share/zabbix # buildkit
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2024-07-09 11:41:44 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.31 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-07-09 11:41:44 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2024-07-09 11:41:44 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2024-07-09 11:41:44 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2024-07-09 11:41:44 UTC (buildkit.dockerfile.v0)USER 1997
2024-07-09 11:41:44 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2024-07-09 11:52:52 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.31
[#000] sha256:4ce000a43472e4a2527834764b5044674760f1e2a766480798d03a93b51a0b39 - 18.24% (26.1 MB)
[#001] sha256:6b1ff4635c1f0e98a1f8a4e4ebddd25afe04a4b1250f00971ce11bee3ce356d1 - 20.19% (28.9 MB)
[#002] sha256:b7361245a6fc40e4051c14592748d7fb43235f7b6ed691670b2c8f62d3da1adc - 0.0% (5.09 KB)
[#003] sha256:c21b1813f53984c4e81f7e2bd84dfea7fc43c6a98d0cdbd5716e5ff044f26dc5 - 61.57% (88.1 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:4d17f741cd3c894dd6fb061b2af30752a7afad1386f559e2bef85471900cf821 - 0.0% (2.89 KB)
/bin/sh -c #(nop) ARG RELEASE
2024-06-27 19:23:22 UTC/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
2024-06-27 19:23:22 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
2024-06-27 19:23:22 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04
2024-06-27 19:23:26 UTC/bin/sh -c #(nop) ADD file:2bed1fbf8253926f27dc275983c274712d836e9b6acdb1059d29c072d8f63a03 in /
2024-06-27 19:23:26 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION=6.0
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION=6.0.31
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.31 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-07-09 11:31: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 SIA org.opencontainers.image.version=6.0.31
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.31/ui /usr/share/zabbix # buildkit
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2024-07-09 11:52:52 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.31 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-07-09 11:52:52 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2024-07-09 11:52:52 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2024-07-09 11:52:52 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2024-07-09 11:52:52 UTC (buildkit.dockerfile.v0)USER 1997
2024-07-09 11:52:52 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2024-07-09 12:02:12 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.31
[#000] sha256:bc95fae2023d2ac4f35628ab3a262084bf2801462adfa6e7304b2b4e70ff4ab1 - 18.52% (26.7 MB)
[#001] sha256:b3e917b3b1317711310cdb16b1e1c279dbf5f20c8057f1c89523ad9f9ff5521a - 20.03% (28.9 MB)
[#002] sha256:b7361245a6fc40e4051c14592748d7fb43235f7b6ed691670b2c8f62d3da1adc - 0.0% (5.09 KB)
[#003] sha256:4e1d5b853cb3664e46fb4e613840d8c0dd50b521ca0a077fa236492fa8eeedf8 - 61.45% (88.6 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:44a70aaf1bd3ff6b212bd499d0db1ab1737f44c9cb75d636170fded174581f78 - 0.0% (2.9 KB)
/bin/sh -c #(nop) ARG RELEASE
2024-06-27 19:26:47 UTC/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
2024-06-27 19:26:47 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
2024-06-27 19:26:47 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04
2024-06-27 19:26:50 UTC/bin/sh -c #(nop) ADD file:160bc105c5c70c3239daf08894bd8a2311ea04a965b30820eebf28573143f86b in /
2024-06-27 19:26:50 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION=6.0
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION=6.0.31
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.31 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-07-09 11:31: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 SIA org.opencontainers.image.version=6.0.31
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.31/ui /usr/share/zabbix # buildkit
2024-07-09 11:31:43 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2024-07-09 12:02:12 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.31 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-07-09 12:02:12 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2024-07-09 12:02:12 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2024-07-09 12:02:12 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2024-07-09 12:02:12 UTC (buildkit.dockerfile.v0)USER 1997
2024-07-09 12:02:12 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.