2022-12-05 19:54:26 UTC
54.4 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.12
[#000] sha256:ca7dd9ec2225f2385955c43b2379305acd51543c28cf1d4e94522b3d94cce3ce - 4.92% (2.68 MB)
[#001] sha256:4a2560abb38aee13af94ccadec5e2439211ddbf5e674faa8ae4f0b820ed0621a - 27.97% (15.2 MB)
[#002] sha256:eab98943f8e5343e784a39d1a9f62264cebc9453ad6e96af45a016d3aa23421e - 0.01% (4.95 KB)
[#003] sha256:3e72d618dcf3f3c8cab94a724e57a30f7289ddd159e38eab097c4aa77dc7027d - 67.1% (36.5 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:5eed5c4170b968063686ea5116df28266ee0d9520a0f22d30c6b92e8e2a09adc - 0.0% (2.65 KB)
/bin/sh -c #(nop) ADD file:ceeb6e8632fafc657116cbf3afbd522185a16963230b57881073dad22eb0e1a3 in /
2022-11-12 04:19:23 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-12-05 19:54:20 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2022-12-05 19:54:20 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2022-12-05 19:54:20 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2022-12-05 19:54:20 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.12 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2022-12-05 19:54:20 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.12
2022-12-05 19:54:20 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2022-12-05 19:54:20 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.12/ui /usr/share/zabbix # buildkit
2022-12-05 19:54:20 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2022-12-05 19:54:26 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.12 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && INSTALL_PKGS="bash curl mariadb-client mariadb-connector-c nginx php8-bcmath php8-ctype php8-fpm php8-gd php8-gettext php8-json php8-ldap php8-mbstring php8-mysqli php8-session php8-simplexml php8-sockets php8-fileinfo php8-xmlreader php8-xmlwriter php8-openssl supervisor" && apk add --no-cache --clean-protected ${INSTALL_PKGS} && apk add --clean-protected --no-cache --no-scripts apache2-ssl && addgroup --system --gid 1995 zabbix && adduser --system --gecos "Zabbix monitoring system" --disabled-password --uid 1997 --ingroup zabbix --shell /sbin/nologin --home /var/lib/zabbix/ zabbix && adduser zabbix root && mkdir -p /etc/zabbix && mkdir -p /etc/zabbix/web && mkdir -p /etc/zabbix/web/certs && mkdir -p /var/lib/php/session && rm -rf /etc/php8/php-fpm.d/www.conf && rm -f /etc/nginx/http.d/*.conf && ln -sf /dev/fd/2 /var/lib/nginx/logs/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" && 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/php8/php-fpm.d/ /etc/php8/php-fpm.conf && chgrp -R 0 /etc/nginx/ /etc/php8/php-fpm.d/ /etc/php8/php-fpm.conf && chmod -R g=u /etc/nginx/ /etc/php8/php-fpm.d/ /etc/php8/php-fpm.conf && chown --quiet -R zabbix:root /var/lib/php/session/ /var/lib/nginx/ && chgrp -R 0 /var/lib/php/session/ /var/lib/nginx/ && chmod -R g=u /var/lib/php/session/ /var/lib/nginx/ && rm -rf /var/cache/apk/* # buildkit
2022-12-05 19:54:26 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2022-12-05 19:54:26 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2022-12-05 19:54:26 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2022-12-05 19:54:26 UTC (buildkit.dockerfile.v0)USER 1997
2022-12-05 19:54:26 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2022-12-05 19:54:35 UTC
51.4 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.12
[#000] sha256:e44ba29d168a7f7c9e914f3724614df9e070aa6ef9b9ba5c9004db3c071f403a - 4.49% (2.31 MB)
[#001] sha256:5960e6b20fea42972bfe4e569e55ebcee53c8a6b3e606c7a4c881bb35927834d - 29.63% (15.2 MB)
[#002] sha256:eab98943f8e5343e784a39d1a9f62264cebc9453ad6e96af45a016d3aa23421e - 0.01% (4.95 KB)
[#003] sha256:381ce022ac5315b2e75910ae6a0c9ba045393e12c647f676bb7b1d6678232f70 - 65.87% (33.9 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:05f530dc60a74305beb702ece8beededa148a96502a7058043bd397f00c0e5da - 0.01% (2.64 KB)
/bin/sh -c #(nop) ADD file:0b4a628f529226f5ec9d357ca63138bd2d22411a889c780ac8d395d761e07b2c in /
2022-11-12 03:57:24 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-12-05 19:54:15 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2022-12-05 19:54:15 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2022-12-05 19:54:15 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2022-12-05 19:54:15 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.12 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2022-12-05 19:54: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/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.12
2022-12-05 19:54:15 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2022-12-05 19:54:15 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.12/ui /usr/share/zabbix # buildkit
2022-12-05 19:54:15 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2022-12-05 19:54:35 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.12 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && INSTALL_PKGS="bash curl mariadb-client mariadb-connector-c nginx php8-bcmath php8-ctype php8-fpm php8-gd php8-gettext php8-json php8-ldap php8-mbstring php8-mysqli php8-session php8-simplexml php8-sockets php8-fileinfo php8-xmlreader php8-xmlwriter php8-openssl supervisor" && apk add --no-cache --clean-protected ${INSTALL_PKGS} && apk add --clean-protected --no-cache --no-scripts apache2-ssl && addgroup --system --gid 1995 zabbix && adduser --system --gecos "Zabbix monitoring system" --disabled-password --uid 1997 --ingroup zabbix --shell /sbin/nologin --home /var/lib/zabbix/ zabbix && adduser zabbix root && mkdir -p /etc/zabbix && mkdir -p /etc/zabbix/web && mkdir -p /etc/zabbix/web/certs && mkdir -p /var/lib/php/session && rm -rf /etc/php8/php-fpm.d/www.conf && rm -f /etc/nginx/http.d/*.conf && ln -sf /dev/fd/2 /var/lib/nginx/logs/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" && 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/php8/php-fpm.d/ /etc/php8/php-fpm.conf && chgrp -R 0 /etc/nginx/ /etc/php8/php-fpm.d/ /etc/php8/php-fpm.conf && chmod -R g=u /etc/nginx/ /etc/php8/php-fpm.d/ /etc/php8/php-fpm.conf && chown --quiet -R zabbix:root /var/lib/php/session/ /var/lib/nginx/ && chgrp -R 0 /var/lib/php/session/ /var/lib/nginx/ && chmod -R g=u /var/lib/php/session/ /var/lib/nginx/ && rm -rf /var/cache/apk/* # buildkit
2022-12-05 19:54:35 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2022-12-05 19:54:35 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2022-12-05 19:54:35 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2022-12-05 19:54:35 UTC (buildkit.dockerfile.v0)USER 1997
2022-12-05 19:54:35 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2022-12-05 19:54:37 UTC
54.3 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.12
[#000] sha256:6875df1f535433e5affe18ecfde9acb7950ab5f76887980ff06c5cdd48cf98f4 - 4.76% (2.58 MB)
[#001] sha256:d8df7a358299639b373ba245ee1dfad11ee472b80a067e4248a59dacab3d5e3b - 28.05% (15.2 MB)
[#002] sha256:eab98943f8e5343e784a39d1a9f62264cebc9453ad6e96af45a016d3aa23421e - 0.01% (4.95 KB)
[#003] sha256:677d036e82f249597582dec8a664f0e467fc4c4b4c9ec045dcad2d81f55d61a8 - 67.18% (36.5 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:476fb24a6d22be06301967f6e2b607f91cdeb5111bff983b32ea980de4b634bd - 0.0% (2.64 KB)
/bin/sh -c #(nop) ADD file:57d621536158358b14d15155826ef2dd4ca034278044111ec0aaf6717016e569 in /
2022-11-12 03:39:38 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-12-05 19:54:19 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2022-12-05 19:54:19 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2022-12-05 19:54:19 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2022-12-05 19:54:19 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.12 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2022-12-05 19:54:19 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.12
2022-12-05 19:54:19 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2022-12-05 19:54:19 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.12/ui /usr/share/zabbix # buildkit
2022-12-05 19:54:19 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2022-12-05 19:54:37 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.12 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && INSTALL_PKGS="bash curl mariadb-client mariadb-connector-c nginx php8-bcmath php8-ctype php8-fpm php8-gd php8-gettext php8-json php8-ldap php8-mbstring php8-mysqli php8-session php8-simplexml php8-sockets php8-fileinfo php8-xmlreader php8-xmlwriter php8-openssl supervisor" && apk add --no-cache --clean-protected ${INSTALL_PKGS} && apk add --clean-protected --no-cache --no-scripts apache2-ssl && addgroup --system --gid 1995 zabbix && adduser --system --gecos "Zabbix monitoring system" --disabled-password --uid 1997 --ingroup zabbix --shell /sbin/nologin --home /var/lib/zabbix/ zabbix && adduser zabbix root && mkdir -p /etc/zabbix && mkdir -p /etc/zabbix/web && mkdir -p /etc/zabbix/web/certs && mkdir -p /var/lib/php/session && rm -rf /etc/php8/php-fpm.d/www.conf && rm -f /etc/nginx/http.d/*.conf && ln -sf /dev/fd/2 /var/lib/nginx/logs/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" && 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/php8/php-fpm.d/ /etc/php8/php-fpm.conf && chgrp -R 0 /etc/nginx/ /etc/php8/php-fpm.d/ /etc/php8/php-fpm.conf && chmod -R g=u /etc/nginx/ /etc/php8/php-fpm.d/ /etc/php8/php-fpm.conf && chown --quiet -R zabbix:root /var/lib/php/session/ /var/lib/nginx/ && chgrp -R 0 /var/lib/php/session/ /var/lib/nginx/ && chmod -R g=u /var/lib/php/session/ /var/lib/nginx/ && rm -rf /var/cache/apk/* # buildkit
2022-12-05 19:54:37 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2022-12-05 19:54:37 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2022-12-05 19:54:37 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2022-12-05 19:54:37 UTC (buildkit.dockerfile.v0)USER 1997
2022-12-05 19:54:37 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2022-12-05 19:54:45 UTC
54.5 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.12
[#000] sha256:cff16a5ffe2df97bc1d10b021c5ceb98bdb36a18a1d70395590444ac204a9b2b - 4.53% (2.47 MB)
[#001] sha256:dd5d1634dc13e0e8724f29b512028c23217b61a1ecdd3357bd24ccb61672a184 - 27.92% (15.2 MB)
[#002] sha256:eab98943f8e5343e784a39d1a9f62264cebc9453ad6e96af45a016d3aa23421e - 0.01% (4.95 KB)
[#003] sha256:76474120017d52fae34605b72de9ba63e960e2a915bc17d80d9f5af43050d729 - 67.53% (36.8 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:779695f837bb6108991393c70c0d571af2e7660d0e710f4971a70b8dc52f892d - 0.0% (2.65 KB)
/bin/sh -c #(nop) ADD file:b78ae95cbacd853e398f187adaf3be51d9e301a66de8f7a4b6c60a9733075cb5 in /
2022-11-12 03:42:06 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-12-05 19:54:19 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2022-12-05 19:54:19 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2022-12-05 19:54:19 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2022-12-05 19:54:19 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.12 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2022-12-05 19:54:19 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.12
2022-12-05 19:54:19 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2022-12-05 19:54:19 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.12/ui /usr/share/zabbix # buildkit
2022-12-05 19:54:19 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2022-12-05 19:54:45 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.12 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && INSTALL_PKGS="bash curl mariadb-client mariadb-connector-c nginx php8-bcmath php8-ctype php8-fpm php8-gd php8-gettext php8-json php8-ldap php8-mbstring php8-mysqli php8-session php8-simplexml php8-sockets php8-fileinfo php8-xmlreader php8-xmlwriter php8-openssl supervisor" && apk add --no-cache --clean-protected ${INSTALL_PKGS} && apk add --clean-protected --no-cache --no-scripts apache2-ssl && addgroup --system --gid 1995 zabbix && adduser --system --gecos "Zabbix monitoring system" --disabled-password --uid 1997 --ingroup zabbix --shell /sbin/nologin --home /var/lib/zabbix/ zabbix && adduser zabbix root && mkdir -p /etc/zabbix && mkdir -p /etc/zabbix/web && mkdir -p /etc/zabbix/web/certs && mkdir -p /var/lib/php/session && rm -rf /etc/php8/php-fpm.d/www.conf && rm -f /etc/nginx/http.d/*.conf && ln -sf /dev/fd/2 /var/lib/nginx/logs/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" && 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/php8/php-fpm.d/ /etc/php8/php-fpm.conf && chgrp -R 0 /etc/nginx/ /etc/php8/php-fpm.d/ /etc/php8/php-fpm.conf && chmod -R g=u /etc/nginx/ /etc/php8/php-fpm.d/ /etc/php8/php-fpm.conf && chown --quiet -R zabbix:root /var/lib/php/session/ /var/lib/nginx/ && chgrp -R 0 /var/lib/php/session/ /var/lib/nginx/ && chmod -R g=u /var/lib/php/session/ /var/lib/nginx/ && rm -rf /var/cache/apk/* # buildkit
2022-12-05 19:54:45 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2022-12-05 19:54:45 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2022-12-05 19:54:45 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2022-12-05 19:54:45 UTC (buildkit.dockerfile.v0)USER 1997
2022-12-05 19:54:45 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.