2024-02-26 16:16:43 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.4.12
[#000] sha256:01007420e9b005dc14a8c8b0f996a2ad8e0d4af6c3d01e62f123be14fe48eec7 - 19.33% (28.2 MB)
[#001] sha256:4795fc89c20c518157120f808c5187cc0c6c9941c9ec39f416bfca8b045a8038 - 20.62% (30.1 MB)
[#002] sha256:c882716690ee9bfbcdb6808a201cfcd6569c59e46a3890d17a8298ebd7c3d4e7 - 0.0% (5.23 KB)
[#003] sha256:2ca850a59d967206072ea2dffb3f31996cde1fe7e158ad271d88d85ef1b64924 - 60.05% (87.5 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:b19721429ca2155362b3be554bd787a8d6430bc0eca5645fc1440522643b0e66 - 0.0% (2.87 KB)
/bin/sh -c #(nop) ARG RELEASE
2024-02-13 10:06:26 UTC/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
2024-02-13 10:06:26 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
2024-02-13 10:06:26 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04
2024-02-13 10:06:28 UTC/bin/sh -c #(nop) ADD file:7f9a3c5a4231ed19174c21d17ce05d84d568cff6d3a0c2a1d7c3a9be5e45c02c in /
2024-02-13 10:06:28 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.4.12 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-02-26 16:15:50 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.4/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.4.12
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.4.12/ui /usr/share/zabbix # buildkit
2024-02-26 16:15:51 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2024-02-26 16:16:43 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.4 ZBX_VERSION=6.4.12 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 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 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-02-26 16:16:43 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2024-02-26 16:16:43 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2024-02-26 16:16:43 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2024-02-26 16:16:43 UTC (buildkit.dockerfile.v0)USER 1997
2024-02-26 16:16:43 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2024-02-26 16:43:05 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.4.12
[#000] sha256:c600ef85012d74e6f7cd7bd4158f722dfa9c8e13439ef794a365d3147011453f - 18.1% (25.4 MB)
[#001] sha256:cc3a3f5882390b88cb0369e44d1b254ce0974bdcf9a4cc018fb268fcc1cec842 - 21.41% (30.1 MB)
[#002] sha256:c882716690ee9bfbcdb6808a201cfcd6569c59e46a3890d17a8298ebd7c3d4e7 - 0.0% (5.23 KB)
[#003] sha256:f07f584dc48e4217db81cc7ba0fa961e084db70eca39e6cf5e547c1b0244d6b1 - 60.48% (84.9 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:36cb07ea27822853712c8c64c377689fc874d350d147e2405fc977618d7bdffa - 0.0% (2.87 KB)
/bin/sh -c #(nop) ARG RELEASE
2024-02-13 10:08:00 UTC/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
2024-02-13 10:08:00 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
2024-02-13 10:08:01 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04
2024-02-13 10:08:20 UTC/bin/sh -c #(nop) ADD file:6767efafdb51cef2acde13d723fa618ffb3cd2155983115496c43ae730e762e6 in /
2024-02-13 10:08:21 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.4.12 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-02-26 16:15:50 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.4/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.4.12
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.4.12/ui /usr/share/zabbix # buildkit
2024-02-26 16:15:51 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2024-02-26 16:43:05 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.4 ZBX_VERSION=6.4.12 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 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 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-02-26 16:43:05 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2024-02-26 16:43:05 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2024-02-26 16:43:05 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2024-02-26 16:43:05 UTC (buildkit.dockerfile.v0)USER 1997
2024-02-26 16:43:05 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2024-02-26 16:25:26 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.4.12
[#000] sha256:a4a2c7a57ed8b997579870d0927433b03cfd94f5dba2153bdbcd885b5d620035 - 18.22% (26.1 MB)
[#001] sha256:d1fea06bfc4e4663fb959ed4a770ffa6266d4c5bb1cfe810c309e9ada5824ac8 - 20.98% (30.1 MB)
[#002] sha256:c882716690ee9bfbcdb6808a201cfcd6569c59e46a3890d17a8298ebd7c3d4e7 - 0.0% (5.23 KB)
[#003] sha256:c8d7740143c1547b6ccf78a3404bbc140aa187534d2fc0427394b7cec8aad62b - 60.8% (87.1 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:e381dd8abc94eae16d32f7e78d8f7cd1eae3370251e58e121f8e6d1cc8d43188 - 0.0% (2.87 KB)
/bin/sh -c #(nop) ARG RELEASE
2024-02-13 10:08:34 UTC/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
2024-02-13 10:08:34 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
2024-02-13 10:08:34 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04
2024-02-13 10:08:48 UTC/bin/sh -c #(nop) ADD file:8d91b8bd386e0cc3407396da8cb35fad29dc5025c641db58739e8c0b3fd77ef0 in /
2024-02-13 10:08:49 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.4.12 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-02-26 16:15:50 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.4/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.4.12
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.4.12/ui /usr/share/zabbix # buildkit
2024-02-26 16:15:51 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2024-02-26 16:25:25 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.4 ZBX_VERSION=6.4.12 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 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 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-02-26 16:25:25 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2024-02-26 16:25:26 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2024-02-26 16:25:26 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2024-02-26 16:25:26 UTC (buildkit.dockerfile.v0)USER 1997
2024-02-26 16:25:26 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2024-02-26 16:33:54 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.4.12
[#000] sha256:8c305036370ece07999393ab52726bcdf8fc6cfdfaecfb9cb60f40ebaecec9e9 - 18.5% (26.7 MB)
[#001] sha256:9b04cc2bb17893437880745383e8dabeef46592c4a4753d955a02969a7b4e622 - 20.81% (30.1 MB)
[#002] sha256:c882716690ee9bfbcdb6808a201cfcd6569c59e46a3890d17a8298ebd7c3d4e7 - 0.0% (5.23 KB)
[#003] sha256:124f54056ff55841d7c4056bf62e828e9cd3a1aff588b1a4f8ea6b32f7e57bc4 - 60.68% (87.6 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:3d1fd197f31b17c654d73b9e9847882d6812581d4f1b80f8ece42b7fbc8d5fdd - 0.0% (2.87 KB)
/bin/sh -c #(nop) ARG RELEASE
2024-02-13 10:05:41 UTC/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
2024-02-13 10:05:41 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
2024-02-13 10:05:41 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04
2024-02-13 10:05:43 UTC/bin/sh -c #(nop) ADD file:0903319c85e93418ab3b2652f358f9269f6605e20b1c6bd55a810d75e48d901d in /
2024-02-13 10:05:43 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.4.12 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-02-26 16:15:50 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.4/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.4.12
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2024-02-26 16:15:50 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.4.12/ui /usr/share/zabbix # buildkit
2024-02-26 16:15:51 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2024-02-26 16:33:54 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.4 ZBX_VERSION=6.4.12 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 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 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-02-26 16:33:54 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2024-02-26 16:33:54 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2024-02-26 16:33:54 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2024-02-26 16:33:54 UTC (buildkit.dockerfile.v0)USER 1997
2024-02-26 16:33:54 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.