2023-08-22 14:31:05 UTC
142 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.6
[#000] sha256:e8742f3d5b7777e3057e196499af75b7e4df8fbe30ed51bd58067ad32c84456d - 28.42% (40.2 MB)
[#001] sha256:c353180fd1f0c822a9dc078f5d1cee02a5112fdbb8418cc9e09f00e57338b1f4 - 20.88% (29.6 MB)
[#002] sha256:ca07fe19861613663ee9248a58eb455d4a2691eb2e72e7d0f66859599a291ea4 - 0.0% (5.22 KB)
[#003] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#004] sha256:34b0ededd70180def7f30d62201555beaf0ebf5be96399fa4bbb93826c0b0a2e - 50.69% (71.8 MB)
[#005] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#006] sha256:9fb2c4a349dccf319129f22e712563335ce0720609142f60da116603b68a9527 - 0.0% (2.76 KB)
/bin/sh -c #(nop) ADD file:6d831e36dc88cf79d59f8cbd45d17cc2c54905a09a4c5e6eb2c1abf1b5ad892d in /
2023-08-05 02:18:32 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2023-08-22 14:29:52 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2023-08-22 14:29:52 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2023-08-22 14:29:52 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2023-08-22 14:29:52 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.4.6 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2023-08-22 14:29:52 UTC (buildkit.dockerfile.v0)LABEL org.opencontainers.image.authors=Alexey Pustovalov <alexey.pustovalov@zabbix.com> 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.6
2023-08-22 14:29:52 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2023-08-22 14:29:52 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.4.6/ui /usr/share/zabbix # buildkit
2023-08-22 14:29:52 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2023-08-22 14:29:52 UTC (buildkit.dockerfile.v0)COPY conf/etc/yum.repos.d/oracle-epel-ol9.repo /etc/yum.repos.d/oracle-epel-ol9.repo # buildkit
2023-08-22 14:31:05 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.4 ZBX_VERSION=6.4.6 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && INSTALL_PKGS="bash curl mysql nginx php-bcmath php-fpm php-gd php-ldap php-mbstring php-mysqlnd php-json php-xml findutils glibc-locale-source supervisor" && microdnf -y install --disablerepo="*" --enablerepo="ol9_baseos_latest" --enablerepo="ol9_appstream" --enablerepo="ol9_developer_EPEL" --setopt=install_weak_deps=0 --best --nodocs ${INSTALL_PKGS} && groupadd --system --gid 1995 zabbix && useradd --system --comment "Zabbix monitoring system" -g zabbix -G root --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 -f /etc/php-fpm.d/www.conf && 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" && 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 "{}" && localedef -c -i {} -f UTF-8 {}.UTF-8 2>/dev/null' && 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-fpm.d/ /etc/php-fpm.conf && chgrp -R 0 /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf && chmod -R g=u /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf && chown --quiet -R zabbix:root /var/lib/php/session/ && chgrp -R 0 /var/lib/php/session/ && chmod -R g=u /var/lib/php/session/ && microdnf -y remove findutils glibc-locale-source && microdnf -y clean all && rm -rf /var/cache/yum /var/lib/yum/yumdb/* /usr/lib/udev/hwdb.d/* && rm -rf /var/cache/dnf /etc/udev/hwdb.bin /root/.pki # buildkit
2023-08-22 14:31:05 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2023-08-22 14:31:05 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2023-08-22 14:31:05 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2023-08-22 14:31:05 UTC (buildkit.dockerfile.v0)USER 1997
2023-08-22 14:31:05 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2023-08-22 14:37:01 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.6
[#000] sha256:04f529a581953c7dc9fc68af106c49728d8b079d77a0b5b838de78d3a3dea527 - 27.83% (38.9 MB)
[#001] sha256:f90c2df5b4574ac3f71b3e8b91843c28fdc3ff75e82cf20b60576c3bc6664106 - 21.13% (29.6 MB)
[#002] sha256:ca07fe19861613663ee9248a58eb455d4a2691eb2e72e7d0f66859599a291ea4 - 0.0% (5.22 KB)
[#003] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#004] sha256:7cd453e7304b8f2e75af3175b111d6c1d024881d707cb4604d2c22afc5a0f415 - 51.04% (71.4 MB)
[#005] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#006] sha256:caf5347c94976d914d63e0c821c2ba3e2e1891fdcf9d565ee7023a018ce393f4 - 0.0% (2.76 KB)
/bin/sh -c #(nop) ADD file:e83a4904029aa4fa1a1e2a540ec6d07194a6a7a7d9dacec4d2f50ba06a1d1082 in /
2023-08-05 02:58:12 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2023-08-22 14:29:52 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2023-08-22 14:29:52 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2023-08-22 14:29:52 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2023-08-22 14:29:52 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.4.6 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2023-08-22 14:29:52 UTC (buildkit.dockerfile.v0)LABEL org.opencontainers.image.authors=Alexey Pustovalov <alexey.pustovalov@zabbix.com> 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.6
2023-08-22 14:29:52 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2023-08-22 14:29:52 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.4.6/ui /usr/share/zabbix # buildkit
2023-08-22 14:29:52 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2023-08-22 14:29:52 UTC (buildkit.dockerfile.v0)COPY conf/etc/yum.repos.d/oracle-epel-ol9.repo /etc/yum.repos.d/oracle-epel-ol9.repo # buildkit
2023-08-22 14:37:01 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.4 ZBX_VERSION=6.4.6 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && INSTALL_PKGS="bash curl mysql nginx php-bcmath php-fpm php-gd php-ldap php-mbstring php-mysqlnd php-json php-xml findutils glibc-locale-source supervisor" && microdnf -y install --disablerepo="*" --enablerepo="ol9_baseos_latest" --enablerepo="ol9_appstream" --enablerepo="ol9_developer_EPEL" --setopt=install_weak_deps=0 --best --nodocs ${INSTALL_PKGS} && groupadd --system --gid 1995 zabbix && useradd --system --comment "Zabbix monitoring system" -g zabbix -G root --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 -f /etc/php-fpm.d/www.conf && 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" && 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 "{}" && localedef -c -i {} -f UTF-8 {}.UTF-8 2>/dev/null' && 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-fpm.d/ /etc/php-fpm.conf && chgrp -R 0 /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf && chmod -R g=u /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf && chown --quiet -R zabbix:root /var/lib/php/session/ && chgrp -R 0 /var/lib/php/session/ && chmod -R g=u /var/lib/php/session/ && microdnf -y remove findutils glibc-locale-source && microdnf -y clean all && rm -rf /var/cache/yum /var/lib/yum/yumdb/* /usr/lib/udev/hwdb.d/* && rm -rf /var/cache/dnf /etc/udev/hwdb.bin /root/.pki # buildkit
2023-08-22 14:37:01 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2023-08-22 14:37:01 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2023-08-22 14:37:01 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2023-08-22 14:37:01 UTC (buildkit.dockerfile.v0)USER 1997
2023-08-22 14:37:01 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.