2021-12-23 18:37:39 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_VERSION5.0.19
[#000] sha256:a1d0c75327776413fa0db9ed3adcdbadedc95a662eb1d360dad82bb913f8a1d1 - 55.74% (79.6 MB)
[#001] sha256:5490bac094bbaff56d040c13ec84b2a72a01347b39f5c5c04f5958cad299b1c7 - 6.25% (8.94 MB)
[#002] sha256:35b079bcd6ae00ae1793791324dd0368d04106a15588bf72a5d4324be6771c84 - 0.0% (4.78 KB)
[#003] sha256:e8453b451553ee8e5b4366829144acac22d746b173c5224aa854e104f4d5e85b - 38.0% (54.3 MB)
[#004] sha256:93c79adeffa5cb53b3edddabd7ce58e2832d140096e168d53b9386a41753f8ac - 0.0% (2.74 KB)
/bin/sh -c #(nop) ADD file:805cb5e15fb6e0bb0326ca33fd2942e068863ce2a8491bb71522c652f31fb466 in /
2021-09-15 18:20:04 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version=1.0 org.label-schema.name=CentOS Base Image org.label-schema.vendor=CentOS org.label-schema.license=GPLv2 org.label-schema.build-date=20210915
2021-09-15 18:20:05 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2021-12-23 18:36:14 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2021-12-23 18:36:14 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2021-12-23 18:36:14 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2021-12-23 18:36:14 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=5.0.19 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2021-12-23 18:36:14 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/5.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=5.0.19
2021-12-23 18:36:14 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2021-12-23 18:36:14 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-5.0.19/ui /usr/share/zabbix # buildkit
2021-12-23 18:36:14 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2021-12-23 18:37:39 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=5.0 ZBX_VERSION=5.0.19 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && REPOLIST="baseos,appstream,epel" && 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" && dnf -y install epel-release && dnf -y module enable mysql && dnf -y module enable php:7.4 nginx:1.18 && dnf -y install --disablerepo "*" --enablerepo "${REPOLIST}" --setopt=tsflags=nodocs --setopt=install_weak_deps=False --best ${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/ && dnf -y remove findutils glibc-locale-source && dnf -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
2021-12-23 18:37:39 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2021-12-23 18:37:39 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2021-12-23 18:37:39 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2021-12-23 18:37:39 UTC (buildkit.dockerfile.v0)USER 1997
2021-12-23 18:37:39 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2021-12-23 18:41:22 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_VERSION5.0.19
[#000] sha256:52f9ef134af7dd14738733e567402af86136287d9468978d044780a6435a1193 - 54.94% (80.1 MB)
[#001] sha256:b562e1f73e17f979600b2fd6411b2b269c526dab315bdfff23d68a541cc63dab - 6.13% (8.94 MB)
[#002] sha256:35b079bcd6ae00ae1793791324dd0368d04106a15588bf72a5d4324be6771c84 - 0.0% (4.78 KB)
[#003] sha256:892a01760b32fc10be739de190adae668bf9ca616eb6dda1518dcaf70ad4a2e5 - 38.93% (56.7 MB)
[#004] sha256:a1eb05f4c4d64bc60244f3178891ebc155cee859773999fb4c65eb1683989e06 - 0.0% (2.74 KB)
/bin/sh -c #(nop) ADD file:420712a90b0934202b326dc06b73638ab8e4603d12be2c23d67d834eb6cfc052 in /
2021-09-15 17:39:42 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version=1.0 org.label-schema.name=CentOS Base Image org.label-schema.vendor=CentOS org.label-schema.license=GPLv2 org.label-schema.build-date=20210915
2021-09-15 17:39:42 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2021-12-23 18:36:14 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2021-12-23 18:36:14 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2021-12-23 18:36:14 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2021-12-23 18:36:14 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=5.0.19 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2021-12-23 18:36:14 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/5.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=5.0.19
2021-12-23 18:36:14 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2021-12-23 18:36:14 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-5.0.19/ui /usr/share/zabbix # buildkit
2021-12-23 18:36:14 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2021-12-23 18:41:22 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=5.0 ZBX_VERSION=5.0.19 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && REPOLIST="baseos,appstream,epel" && 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" && dnf -y install epel-release && dnf -y module enable mysql && dnf -y module enable php:7.4 nginx:1.18 && dnf -y install --disablerepo "*" --enablerepo "${REPOLIST}" --setopt=tsflags=nodocs --setopt=install_weak_deps=False --best ${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/ && dnf -y remove findutils glibc-locale-source && dnf -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
2021-12-23 18:41:22 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2021-12-23 18:41:22 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2021-12-23 18:41:22 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2021-12-23 18:41:22 UTC (buildkit.dockerfile.v0)USER 1997
2021-12-23 18:41:22 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2021-12-23 18:41:51 UTC
160 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
TERMxterm
ZBX_SOURCEShttps://git.zabbix.com/scm/zbx/zabbix.git
ZBX_VERSION5.0.19
[#000] sha256:ea373b0f63e4f4e7a9529c8258e71e0e897f5ed4eb2af13a8e7e87ceefaa8b5d - 55.91% (89.6 MB)
[#001] sha256:098b6b495a305785883c411dffbf2869d2008a57f805054a9568691cd60b9b20 - 5.57% (8.94 MB)
[#002] sha256:8a9812b7407d1ad01d5a5bda0e5d3eeaee4c896d522d52464b9b08cd60fd6295 - 0.0% (4.77 KB)
[#003] sha256:d0a369d8d0472c2be587aa8ec210d25558243c9eb52486059d1251c18d23006c - 38.51% (61.7 MB)
[#004] sha256:0efb3cc71b6a7d9506f745d6d2597230630f62db15005868500065fad9b99660 - 0.0% (2.74 KB)
/bin/sh -c #(nop) ADD file:bbae4486bc410c279ebd54b2fc78bcf65f121306acf1eaccacbd9f83f5d6d337 in /
2021-09-15 18:28:50 UTC/bin/sh -c #(nop) LABEL org.label-schema.schema-version=1.0 org.label-schema.name=CentOS Base Image org.label-schema.vendor=CentOS org.label-schema.license=GPLv2 org.label-schema.build-date=20210915
2021-09-15 18:28:53 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2021-12-23 18:36:15 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2021-12-23 18:36:15 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2021-12-23 18:36:15 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2021-12-23 18:36:15 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=5.0.19 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2021-12-23 18:36:15 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/5.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=5.0.19
2021-12-23 18:36:15 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2021-12-23 18:36:15 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-5.0.19/ui /usr/share/zabbix # buildkit
2021-12-23 18:36:15 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2021-12-23 18:41:51 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=5.0 ZBX_VERSION=5.0.19 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && REPOLIST="baseos,appstream,epel" && 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" && dnf -y install epel-release && dnf -y module enable mysql && dnf -y module enable php:7.4 nginx:1.18 && dnf -y install --disablerepo "*" --enablerepo "${REPOLIST}" --setopt=tsflags=nodocs --setopt=install_weak_deps=False --best ${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/ && dnf -y remove findutils glibc-locale-source && dnf -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
2021-12-23 18:41:51 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2021-12-23 18:41:51 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2021-12-23 18:41:51 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2021-12-23 18:41:51 UTC (buildkit.dockerfile.v0)USER 1997
2021-12-23 18:41:51 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.