2022-11-02 20:21:00 UTC
53.9 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.10
[#000] sha256:213ec9aee27d8be045c6a92b7eac22c9a64b44558193775a1a7f626352392b49 - 4.97% (2.68 MB)
[#001] sha256:8646648f936c2927bade1d71b0472025dc76b0f4f53a7138dd376db856b3856a - 27.84% (15 MB)
[#002] sha256:c34ef5e78866da81ffe1af9ca10e14bdd8e3af1e2a49cdb4ed55e6429fce8716 - 0.01% (4.96 KB)
[#003] sha256:14a0b9b63c6b1466b01e2601a57659c28c493fec30f373e0e690bec23a78060a - 67.18% (36.2 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:27d23d78b78991065e7ae595f09fe9cfa80e844c60f29fb5b146f20d7b43dd21 - 0.0% (2.64 KB)
/bin/sh -c #(nop) ADD file:2a949686d9886ac7c10582a6c29116fd29d3077d02755e87e111870d63607725 in /
2022-08-09 17:19:53 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-11-02 20:20:54 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2022-11-02 20:20:54 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2022-11-02 20:20:54 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2022-11-02 20:20:54 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.10 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2022-11-02 20:20:54 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.10
2022-11-02 20:20:54 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2022-11-02 20:20:54 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.10/ui /usr/share/zabbix # buildkit
2022-11-02 20:20:54 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2022-11-02 20:21:00 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.10 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-11-02 20:21:00 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2022-11-02 20:21:00 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2022-11-02 20:21:00 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2022-11-02 20:21:00 UTC (buildkit.dockerfile.v0)USER 1997
2022-11-02 20:21:00 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2022-11-02 20:21:13 UTC
50.8 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.10
[#000] sha256:c6556b3b6858c6fa1e328377cc2c4becdc9cd1bc3e7302aa7299936522cf93ba - 4.53% (2.31 MB)
[#001] sha256:a3564794dfbfed2bd2d198cdfbed80708900b383036b85b68d769b00472fc492 - 29.5% (15 MB)
[#002] sha256:06eed0df9d069adf8f455cbbabfe51ac68f6a2524c0f566e961cfec58de3fcb9 - 0.01% (4.96 KB)
[#003] sha256:181c70c1b5e9a44c535d1a5d5d76d92769ac41e79ad3afb402e81044e33eaea9 - 65.95% (33.5 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:3467acf7987e21f723de5dbafd15b77c8a823718d10fe573525eecc4ff9bd870 - 0.01% (2.65 KB)
/bin/sh -c #(nop) ADD file:75521fe16320b193092588f6f31052c85e736965ceb11673de18bd14965a45e6 in /
2022-08-09 16:57:44 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-11-02 20:20:50 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2022-11-02 20:20:50 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2022-11-02 20:20:50 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2022-11-02 20:20:50 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.10 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2022-11-02 20:20: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.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.10
2022-11-02 20:20:50 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2022-11-02 20:20:50 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.10/ui /usr/share/zabbix # buildkit
2022-11-02 20:20:51 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2022-11-02 20:21:13 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.10 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-11-02 20:21:13 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2022-11-02 20:21:13 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2022-11-02 20:21:13 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2022-11-02 20:21:13 UTC (buildkit.dockerfile.v0)USER 1997
2022-11-02 20:21:13 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2022-11-02 20:21:14 UTC
53.7 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.10
[#000] sha256:9b18e9b68314027565b90ff6189d65942c0f7986da80df008b8431276885218e - 4.81% (2.58 MB)
[#001] sha256:da854d6af7610d642796f370490154c80a0dbf795fee3077f63fc7f24c25b8a0 - 27.92% (15 MB)
[#002] sha256:98edc43b0a350c7d4b8cd7daff3bba0761a2f88a0b2bb75b95c69fb48bc185b0 - 0.01% (4.96 KB)
[#003] sha256:887ab964638d91db7549a0899764b91ad5ed3645a5815e512267bd798fb3a763 - 67.26% (36.1 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:aff4dfc3a40ac74f6b2151be3ab999f243e3accd929887afd1797552d8ff9f7b - 0.0% (2.65 KB)
/bin/sh -c #(nop) ADD file:960fd469d48cf79ba14bbda71f3192074ed860c112e30e0bc92bff3440cb45ab in /
2022-08-09 17:39:42 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-11-02 20:20:52 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2022-11-02 20:20:52 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2022-11-02 20:20:52 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2022-11-02 20:20:52 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.10 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2022-11-02 20:20:52 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.10
2022-11-02 20:20:52 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2022-11-02 20:20:52 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.10/ui /usr/share/zabbix # buildkit
2022-11-02 20:20:52 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2022-11-02 20:21:14 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.10 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-11-02 20:21:14 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2022-11-02 20:21:14 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2022-11-02 20:21:14 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2022-11-02 20:21:14 UTC (buildkit.dockerfile.v0)USER 1997
2022-11-02 20:21:14 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2022-11-02 20:21:21 UTC
54 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.10
[#000] sha256:790c84f1f3409eab952345157df7fa804ba6b5f06d4ceb6f2dfa3c6de2064397 - 4.58% (2.47 MB)
[#001] sha256:99a97ffacc3c1cbea73bb8e7eaec1c36f1243dfe1fe0bc59a0985df2216ca0d0 - 27.79% (15 MB)
[#002] sha256:98edc43b0a350c7d4b8cd7daff3bba0761a2f88a0b2bb75b95c69fb48bc185b0 - 0.01% (4.96 KB)
[#003] sha256:4c059b65d990138b2ffff5a15c1c3c28937ce98ca072f9b14616f4c9de14db7c - 67.62% (36.5 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:9d173c8902730ce4751fceed04fa04f2d85119ede1d84ed1c8197ab22d5f0127 - 0.0% (2.65 KB)
/bin/sh -c #(nop) ADD file:b43a065471bc4711415d3c67cd5b6559b0c48ee7ffe9761530477cf457a6dc34 in /
2022-08-09 17:41:46 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-11-02 20:20:52 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION
2022-11-02 20:20:52 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION
2022-11-02 20:20:52 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2022-11-02 20:20:52 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.10 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2022-11-02 20:20:52 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.10
2022-11-02 20:20:52 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2022-11-02 20:20:52 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.10/ui /usr/share/zabbix # buildkit
2022-11-02 20:20:52 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2022-11-02 20:21:21 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.10 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-11-02 20:21:21 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2022-11-02 20:21:21 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2022-11-02 20:21:21 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2022-11-02 20:21:21 UTC (buildkit.dockerfile.v0)USER 1997
2022-11-02 20:21:21 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.