2024-08-14 06:23:24 UTC
85.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.33
[#000] sha256:46b060cc26202cf98e28414d790b5cabd67094bba50315a1ae2e9daf913fca4f - 3.82% (3.26 MB)
[#001] sha256:5691b0f083bf076988ec7e6794fe3d1826fbfc25f16b2dfd335d30e646738ebf - 33.96% (29 MB)
[#002] sha256:1f229baa240467ad5575b41dba99cb683051eb443f66ca7267be856e7dcaf356 - 0.01% (5.04 KB)
[#003] sha256:a3abd13642a6b900424e0d1364f9f8bf76e4f9838cdcd2b958bb69036c8df1ee - 62.21% (53.1 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:e0bc3c31d54c50f72a20932b81790dc02dd4d5f3c7aad9ccaad720ffdae433e1 - 0.0% (2.88 KB)
/bin/sh -c #(nop) ADD file:c644b15c170e2ca46176a566910d40a21dce66518ed8fdfd34ebcf0e9dc90c55 in /
2024-07-22 22:26:49 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION=6.0
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION=6.0.33
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.33 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-08-14 06:23:18 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 SIA org.opencontainers.image.version=6.0.33
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.33/ui /usr/share/zabbix # buildkit
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2024-08-14 06:23:24 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.33 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && INSTALL_PKGS="bash tzdata curl mariadb-client mariadb-connector-c nginx php83-bcmath php83-ctype php83-fpm php83-gd php83-gettext php83-json php83-ldap php83-mbstring php83-mysqli php83-session php83-simplexml php83-sockets php83-fileinfo php83-xmlreader php83-xmlwriter php83-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 && mkdir -p /etc/zabbix && mkdir -p /etc/zabbix/web && mkdir -p /etc/zabbix/web/certs && mkdir -p /var/lib/php/session && rm -rf /etc/php83/php-fpm.d/www.conf && rm -f /etc/nginx/http.d/*.conf && 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" && 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/php83/php-fpm.d/ /etc/php83/php-fpm.conf && chgrp -R 0 /etc/nginx/ /etc/php83/php-fpm.d/ /etc/php83/php-fpm.conf && chmod -R g=u /etc/nginx/ /etc/php83/php-fpm.d/ /etc/php83/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/ # buildkit
2024-08-14 06:23:24 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2024-08-14 06:23:24 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2024-08-14 06:23:24 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2024-08-14 06:23:24 UTC (buildkit.dockerfile.v0)USER 1997
2024-08-14 06:23:24 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2024-08-14 06:23:34 UTC
80.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.33
[#000] sha256:8f161eaa88b843263b696c64fddf3418b0e44eaf5043acda85e43596a2978f9b - 3.46% (2.79 MB)
[#001] sha256:9c2bb8a645e1ca2e44f9289dd5d981a72b48874e357f9410c7e723d423266af1 - 35.9% (29 MB)
[#002] sha256:1f229baa240467ad5575b41dba99cb683051eb443f66ca7267be856e7dcaf356 - 0.01% (5.04 KB)
[#003] sha256:a72ffa3ff67d05c2a58fe64b5000be895f98450540527376188faaefe5f355be - 60.64% (48.9 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:c84df76ef373bdf883b6a2380beb97b9fdf5205fc14c2b3f7ee0d7d572d86da1 - 0.0% (2.88 KB)
/bin/sh -c #(nop) ADD file:60c2aa05ac383c09d9e77c7234444745ba6b4007cbe51e0c51d3c21b159b2b3c in /
2024-07-22 21:59:53 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2024-08-14 06:23:15 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION=6.0
2024-08-14 06:23:15 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION=6.0.33
2024-08-14 06:23:15 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-08-14 06:23:15 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.33 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-08-14 06:23: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 SIA org.opencontainers.image.version=6.0.33
2024-08-14 06:23:15 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2024-08-14 06:23:15 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.33/ui /usr/share/zabbix # buildkit
2024-08-14 06:23:15 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2024-08-14 06:23:34 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.33 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && INSTALL_PKGS="bash tzdata curl mariadb-client mariadb-connector-c nginx php83-bcmath php83-ctype php83-fpm php83-gd php83-gettext php83-json php83-ldap php83-mbstring php83-mysqli php83-session php83-simplexml php83-sockets php83-fileinfo php83-xmlreader php83-xmlwriter php83-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 && mkdir -p /etc/zabbix && mkdir -p /etc/zabbix/web && mkdir -p /etc/zabbix/web/certs && mkdir -p /var/lib/php/session && rm -rf /etc/php83/php-fpm.d/www.conf && rm -f /etc/nginx/http.d/*.conf && 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" && 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/php83/php-fpm.d/ /etc/php83/php-fpm.conf && chgrp -R 0 /etc/nginx/ /etc/php83/php-fpm.d/ /etc/php83/php-fpm.conf && chmod -R g=u /etc/nginx/ /etc/php83/php-fpm.d/ /etc/php83/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/ # buildkit
2024-08-14 06:23:34 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2024-08-14 06:23:34 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2024-08-14 06:23:34 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2024-08-14 06:23:34 UTC (buildkit.dockerfile.v0)USER 1997
2024-08-14 06:23:34 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2024-08-14 06:23:38 UTC
85.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.33
[#000] sha256:119661e64d8d593a625274dd829d8550c61de6dd5631287dfea42e99c1c2c736 - 3.74% (3.2 MB)
[#001] sha256:cf042fb79204d897e000e85855d032dfeff0fcf0b53719e91ed3c1df69e5acf3 - 33.82% (29 MB)
[#002] sha256:1f229baa240467ad5575b41dba99cb683051eb443f66ca7267be856e7dcaf356 - 0.01% (5.04 KB)
[#003] sha256:221b80c353770da803919b5ddbcdc2b901f776ad17a096a55dfa85e925e8445f - 62.43% (53.5 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:99d07762ba694dfc479e049945f77441c8b98ac8e1d3af48ca1b5ec752fcb384 - 0.0% (2.88 KB)
/bin/sh -c #(nop) ADD file:7990c7edbcf2739c4b2df767635f403325689f42de6e05e9d81a79fc719930c5 in /
2024-07-22 21:44:18 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION=6.0
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION=6.0.33
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.33 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-08-14 06:23:18 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 SIA org.opencontainers.image.version=6.0.33
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.33/ui /usr/share/zabbix # buildkit
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2024-08-14 06:23:38 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.33 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && INSTALL_PKGS="bash tzdata curl mariadb-client mariadb-connector-c nginx php83-bcmath php83-ctype php83-fpm php83-gd php83-gettext php83-json php83-ldap php83-mbstring php83-mysqli php83-session php83-simplexml php83-sockets php83-fileinfo php83-xmlreader php83-xmlwriter php83-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 && mkdir -p /etc/zabbix && mkdir -p /etc/zabbix/web && mkdir -p /etc/zabbix/web/certs && mkdir -p /var/lib/php/session && rm -rf /etc/php83/php-fpm.d/www.conf && rm -f /etc/nginx/http.d/*.conf && 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" && 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/php83/php-fpm.d/ /etc/php83/php-fpm.conf && chgrp -R 0 /etc/nginx/ /etc/php83/php-fpm.d/ /etc/php83/php-fpm.conf && chmod -R g=u /etc/nginx/ /etc/php83/php-fpm.d/ /etc/php83/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/ # buildkit
2024-08-14 06:23:38 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2024-08-14 06:23:38 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2024-08-14 06:23:38 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2024-08-14 06:23:38 UTC (buildkit.dockerfile.v0)USER 1997
2024-08-14 06:23:38 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2024-08-14 06:23:43 UTC
86.6 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.33
[#000] sha256:6822b2fabea056adaf2dbe133c4384939c5aa1e2a522e965ebda31e26deca1e5 - 3.7% (3.21 MB)
[#001] sha256:acc619ced5b7829595c0a0d3ac9786f5628e2ccbe628eb8e477f7558c02c1827 - 33.46% (29 MB)
[#002] sha256:1f229baa240467ad5575b41dba99cb683051eb443f66ca7267be856e7dcaf356 - 0.01% (5.04 KB)
[#003] sha256:a2d7f3f71a0016c5fed21b8a58bc40992928a4eb202f76f52fef3ebc761735f7 - 62.83% (54.4 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:880aba7513f142922c2addc2e2cf0f11fdb0b63045dce0c7a3714c4f19bce957 - 0.0% (2.88 KB)
/bin/sh -c #(nop) ADD file:0a05f9aa9e288df7339330e9c8c7654e92a33000bb227984a095f716196f51cc in /
2024-07-22 21:26:28 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION=6.0
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION=6.0.33
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.33 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-08-14 06:23:18 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 SIA org.opencontainers.image.version=6.0.33
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.33/ui /usr/share/zabbix # buildkit
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2024-08-14 06:23:43 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.33 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && INSTALL_PKGS="bash tzdata curl mariadb-client mariadb-connector-c nginx php83-bcmath php83-ctype php83-fpm php83-gd php83-gettext php83-json php83-ldap php83-mbstring php83-mysqli php83-session php83-simplexml php83-sockets php83-fileinfo php83-xmlreader php83-xmlwriter php83-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 && mkdir -p /etc/zabbix && mkdir -p /etc/zabbix/web && mkdir -p /etc/zabbix/web/certs && mkdir -p /var/lib/php/session && rm -rf /etc/php83/php-fpm.d/www.conf && rm -f /etc/nginx/http.d/*.conf && 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" && 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/php83/php-fpm.d/ /etc/php83/php-fpm.conf && chgrp -R 0 /etc/nginx/ /etc/php83/php-fpm.d/ /etc/php83/php-fpm.conf && chmod -R g=u /etc/nginx/ /etc/php83/php-fpm.d/ /etc/php83/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/ # buildkit
2024-08-14 06:23:43 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2024-08-14 06:23:43 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2024-08-14 06:23:43 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2024-08-14 06:23:43 UTC (buildkit.dockerfile.v0)USER 1997
2024-08-14 06:23:43 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["docker-entrypoint.sh"]
2024-08-14 06:23:49 UTC
87.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.33
[#000] sha256:1f544ad804b60fa6fc54acddfe2c176a2b22e7079fedbf238b2c2bb51b8d0dfa - 3.55% (3.1 MB)
[#001] sha256:7d1dac017f0ffe28baa47ba600259d12952ad210864690f54a826f92121e3fb1 - 33.13% (29 MB)
[#002] sha256:1f229baa240467ad5575b41dba99cb683051eb443f66ca7267be856e7dcaf356 - 0.01% (5.04 KB)
[#003] sha256:9dc62ccb8f34c7c0b83e7b6ed4e8b029f732a48c8eeae12c8a16cbbf8ae594e3 - 63.31% (55.4 MB)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:7be396b260e10d65d9db51cf47550681ae7c8ba13266d49e876318ad8c58f0eb - 0.0% (2.88 KB)
/bin/sh -c #(nop) ADD file:b52033eb72014ee086783e139c55b353697322576013415769016a48fd4f4342 in /
2024-07-22 21:50:19 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)ARG MAJOR_VERSION=6.0
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)ARG ZBX_VERSION=6.0.33
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)ENV TERM=xterm ZBX_VERSION=6.0.33 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2024-08-14 06:23:18 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 SIA org.opencontainers.image.version=6.0.33
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)STOPSIGNAL SIGTERM
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)COPY /tmp/zabbix-6.0.33/ui /usr/share/zabbix # buildkit
2024-08-14 06:23:18 UTC (buildkit.dockerfile.v0)COPY conf/etc/ /etc/ # buildkit
2024-08-14 06:23:49 UTC (buildkit.dockerfile.v0)RUN |3 MAJOR_VERSION=6.0 ZBX_VERSION=6.0.33 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && INSTALL_PKGS="bash tzdata curl mariadb-client mariadb-connector-c nginx php83-bcmath php83-ctype php83-fpm php83-gd php83-gettext php83-json php83-ldap php83-mbstring php83-mysqli php83-session php83-simplexml php83-sockets php83-fileinfo php83-xmlreader php83-xmlwriter php83-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 && mkdir -p /etc/zabbix && mkdir -p /etc/zabbix/web && mkdir -p /etc/zabbix/web/certs && mkdir -p /var/lib/php/session && rm -rf /etc/php83/php-fpm.d/www.conf && rm -f /etc/nginx/http.d/*.conf && 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" && 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/php83/php-fpm.d/ /etc/php83/php-fpm.conf && chgrp -R 0 /etc/nginx/ /etc/php83/php-fpm.d/ /etc/php83/php-fpm.conf && chmod -R g=u /etc/nginx/ /etc/php83/php-fpm.d/ /etc/php83/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/ # buildkit
2024-08-14 06:23:49 UTC (buildkit.dockerfile.v0)EXPOSE map[8080/tcp:{} 8443/tcp:{}]
2024-08-14 06:23:49 UTC (buildkit.dockerfile.v0)WORKDIR /usr/share/zabbix
2024-08-14 06:23:49 UTC (buildkit.dockerfile.v0)COPY docker-entrypoint.sh /usr/bin/ # buildkit
2024-08-14 06:23:49 UTC (buildkit.dockerfile.v0)USER 1997
2024-08-14 06:23:49 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.