Namespace
zabbix
Image / Tag
zabbix-web-nginx-mysql:4.0.37-ubuntu
Content Digest
sha256:fab22849e01c5222e07a0740fda361645baf2bd907bbac6d9c69d6fbf28e4c7f
Details
Created

2021-12-23 18:04:30 UTC

Size

100 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    Alexey Pustovalov <[email protected]>
  • org.opencontainers.image.created
    2021-12-23T18:02:01.451Z
  • 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/4.0/manual/installation/containers
  • org.opencontainers.image.licenses
    GPL v2.0
  • org.opencontainers.image.revision
    e3444336cb91a8b274566919f87a2bc78cf9af05
  • 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
    4.0.37

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

TERM

xterm

ZBX_SOURCES

https://git.zabbix.com/scm/zbx/zabbix.git

ZBX_VERSION

4.0.37


Layers

[#000] sha256:284055322776031bac33723839acb0db2d063a525ba4fa1fd268a831c7553b26 - 25.42% (25.5 MB)

[#001] sha256:e14a71857062d387f3c341ca3dd638719b81d0d48b518a77d53470d55d41f59f - 8.2% (8.22 MB)

[#002] sha256:104bba6ea372eea50c5916fbbe86435bcff6a19ee986884ebff4186d6c7d58f3 - 0.0% (4.37 KB)

[#003] sha256:2d39983e1b299625f6b4bcf534e2531d62c302194a1bdc9e54311dbc9f6e9a59 - 66.37% (66.5 MB)

[#004] sha256:01fb1221e8ac660f3c51fe7863aa5149f3a253c3f6f23fba7c023763e2b12213 - 0.0% (2.52 KB)


History
2021-10-01 02:23:23 UTC

/bin/sh -c #(nop) ADD file:0d82cd095966e8ee78b593cb47a352eec842edb7bd9d9468e8a70154522447d1 in /

2021-10-01 02:23:24 UTC

/bin/sh -c #(nop) CMD ["bash"]

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

ARG MAJOR_VERSION

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

ARG ZBX_VERSION

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

ENV TERM=xterm ZBX_VERSION=4.0.37 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git

2021-12-23 18:02:40 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/4.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=4.0.37

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

STOPSIGNAL SIGTERM

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

COPY /tmp/zabbix-4.0.37/frontends/php /usr/share/zabbix # buildkit

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

COPY conf/etc/ /etc/ # buildkit

2021-12-23 18:04:30 UTC (buildkit.dockerfile.v0)

RUN |3 MAJOR_VERSION=4.0 ZBX_VERSION=4.0.37 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && echo "#!/bin/sh\nexit 101" > /usr/sbin/policy-rc.d && INSTALL_PKGS="bash ca-certificates curl mysql-client nginx locales php7.2-bcmath php7.2-fpm php7.2-gd php7.2-json php7.2-ldap php7.2-mbstring php7.2-mysql php7.2-xml supervisor" && INSTALL_TEMP_PKGS="gpg ca-certificates dirmngr gpg-agent" && apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install ${INSTALL_TEMP_PKGS} && NGINX_GPGKEY=573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62; found=''; for server in ha.pool.sks-keyservers.net hkp://keyserver.ubuntu.com:80 hkp://p80.pool.sks-keyservers.net:80 pgp.mit.edu ; do echo "Fetching GPG key $NGINX_GPGKEY from $server"; apt-key adv --keyserver "$server" --keyserver-options timeout=10 --recv-keys "$NGINX_GPGKEY" && found=yes && break; done; test -z "$found" && echo >&2 "error: failed to fetch GPG key $NGINX_GPGKEY" && exit 1; DISTRIB_CODENAME=$(/bin/bash -c 'source /etc/lsb-release && echo $DISTRIB_CODENAME') && echo "deb https://nginx.org/packages/ubuntu/ $DISTRIB_CODENAME nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --no-install-recommends install ${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 /var/lib/php/session && rm -f /etc/nginx/conf.d/*.conf && rm -rf /var/cache/nginx/ && rm -f /etc/php/7.2/fpm/pool.d/www.conf && ln -sf /dev/fd/2 /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" && mkdir -p /var/lib/locales/supported.d/ && rm -f /var/lib/locales/supported.d/local && 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 "{}.UTF-8 UTF-8" >> /var/lib/locales/supported.d/local' && dpkg-reconfigure locales && chown --quiet -R zabbix:root /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php && chgrp -R 0 /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php && chmod -R g=u /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php && chown --quiet -R zabbix:root /etc/nginx/ /etc/php/7.2/fpm/php-fpm.conf /etc/php/7.2/fpm/pool.d/ && chgrp -R 0 /etc/nginx/ /etc/php/7.2/fpm/php-fpm.conf /etc/php/7.2/fpm/pool.d/ && chmod -R g=u /etc/nginx/ /etc/php/7.2/fpm/php-fpm.conf /etc/php/7.2/fpm/pool.d/ && chown --quiet -R zabbix:root /var/lib/php/session/ && chgrp -R 0 /var/lib/php/session/ && chmod -R g=u /var/lib/php/session/ && DEBIAN_FRONTEND=noninteractive apt-get -y purge gpg dirmngr gpg-agent && apt-get -y autoremove && apt-get -y clean && rm -rf /var/lib/apt/lists/* # buildkit

2021-12-23 18:04:30 UTC (buildkit.dockerfile.v0)

EXPOSE map[8080/tcp:{} 8443/tcp:{}]

2021-12-23 18:04:30 UTC (buildkit.dockerfile.v0)

WORKDIR /usr/share/zabbix

2021-12-23 18:04:30 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint.sh /usr/bin/ # buildkit

2021-12-23 18:04:30 UTC (buildkit.dockerfile.v0)

USER 1997

2021-12-23 18:04:30 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["docker-entrypoint.sh"]

Details
Created

2021-12-23 18:19:21 UTC

Size

92.1 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    Alexey Pustovalov <[email protected]>
  • org.opencontainers.image.created
    2021-12-23T18:02:01.451Z
  • 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/4.0/manual/installation/containers
  • org.opencontainers.image.licenses
    GPL v2.0
  • org.opencontainers.image.revision
    e3444336cb91a8b274566919f87a2bc78cf9af05
  • 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
    4.0.37

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

TERM

xterm

ZBX_SOURCES

https://git.zabbix.com/scm/zbx/zabbix.git

ZBX_VERSION

4.0.37


Layers

[#000] sha256:0fe312f6db8a357ff205c74a1649d8c36186a76057c3223acbd31367e2dfd049 - 23.09% (21.3 MB)

[#001] sha256:c5b6541b81724861a4d1868a632310e62b51a968b16851ee810e766d40195171 - 8.92% (8.22 MB)

[#002] sha256:104bba6ea372eea50c5916fbbe86435bcff6a19ee986884ebff4186d6c7d58f3 - 0.0% (4.37 KB)

[#003] sha256:0af61b2aa8ecbd0841ca715e6691fd6819514fafdc511acacea59bffad73702a - 67.98% (62.6 MB)

[#004] sha256:e753509f67deb98114bb6f2688466c7ac7d5f890c27c4f9147ef893a853d3720 - 0.0% (2.52 KB)


History
2021-10-02 05:58:32 UTC

/bin/sh -c #(nop) ADD file:ec8cec062962fe6498197aa4bfaf1953505e272985dda8d5e81465521d850fac in /

2021-10-02 05:58:33 UTC

/bin/sh -c #(nop) CMD ["bash"]

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

ARG MAJOR_VERSION

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

ARG ZBX_VERSION

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

ENV TERM=xterm ZBX_VERSION=4.0.37 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git

2021-12-23 18:02:40 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/4.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=4.0.37

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

STOPSIGNAL SIGTERM

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

COPY /tmp/zabbix-4.0.37/frontends/php /usr/share/zabbix # buildkit

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

COPY conf/etc/ /etc/ # buildkit

2021-12-23 18:19:21 UTC (buildkit.dockerfile.v0)

RUN |3 MAJOR_VERSION=4.0 ZBX_VERSION=4.0.37 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && echo "#!/bin/sh\nexit 101" > /usr/sbin/policy-rc.d && INSTALL_PKGS="bash ca-certificates curl mysql-client nginx locales php7.2-bcmath php7.2-fpm php7.2-gd php7.2-json php7.2-ldap php7.2-mbstring php7.2-mysql php7.2-xml supervisor" && INSTALL_TEMP_PKGS="gpg ca-certificates dirmngr gpg-agent" && apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install ${INSTALL_TEMP_PKGS} && NGINX_GPGKEY=573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62; found=''; for server in ha.pool.sks-keyservers.net hkp://keyserver.ubuntu.com:80 hkp://p80.pool.sks-keyservers.net:80 pgp.mit.edu ; do echo "Fetching GPG key $NGINX_GPGKEY from $server"; apt-key adv --keyserver "$server" --keyserver-options timeout=10 --recv-keys "$NGINX_GPGKEY" && found=yes && break; done; test -z "$found" && echo >&2 "error: failed to fetch GPG key $NGINX_GPGKEY" && exit 1; DISTRIB_CODENAME=$(/bin/bash -c 'source /etc/lsb-release && echo $DISTRIB_CODENAME') && echo "deb https://nginx.org/packages/ubuntu/ $DISTRIB_CODENAME nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --no-install-recommends install ${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 /var/lib/php/session && rm -f /etc/nginx/conf.d/*.conf && rm -rf /var/cache/nginx/ && rm -f /etc/php/7.2/fpm/pool.d/www.conf && ln -sf /dev/fd/2 /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" && mkdir -p /var/lib/locales/supported.d/ && rm -f /var/lib/locales/supported.d/local && 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 "{}.UTF-8 UTF-8" >> /var/lib/locales/supported.d/local' && dpkg-reconfigure locales && chown --quiet -R zabbix:root /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php && chgrp -R 0 /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php && chmod -R g=u /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php && chown --quiet -R zabbix:root /etc/nginx/ /etc/php/7.2/fpm/php-fpm.conf /etc/php/7.2/fpm/pool.d/ && chgrp -R 0 /etc/nginx/ /etc/php/7.2/fpm/php-fpm.conf /etc/php/7.2/fpm/pool.d/ && chmod -R g=u /etc/nginx/ /etc/php/7.2/fpm/php-fpm.conf /etc/php/7.2/fpm/pool.d/ && chown --quiet -R zabbix:root /var/lib/php/session/ && chgrp -R 0 /var/lib/php/session/ && chmod -R g=u /var/lib/php/session/ && DEBIAN_FRONTEND=noninteractive apt-get -y purge gpg dirmngr gpg-agent && apt-get -y autoremove && apt-get -y clean && rm -rf /var/lib/apt/lists/* # buildkit

2021-12-23 18:19:21 UTC (buildkit.dockerfile.v0)

EXPOSE map[8080/tcp:{} 8443/tcp:{}]

2021-12-23 18:19:21 UTC (buildkit.dockerfile.v0)

WORKDIR /usr/share/zabbix

2021-12-23 18:19:21 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint.sh /usr/bin/ # buildkit

2021-12-23 18:19:21 UTC (buildkit.dockerfile.v0)

USER 1997

2021-12-23 18:19:21 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["docker-entrypoint.sh"]

Details
Created

2021-12-23 18:19:13 UTC

Size

95.9 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    Alexey Pustovalov <[email protected]>
  • org.opencontainers.image.created
    2021-12-23T18:02:01.451Z
  • 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/4.0/manual/installation/containers
  • org.opencontainers.image.licenses
    GPL v2.0
  • org.opencontainers.image.revision
    e3444336cb91a8b274566919f87a2bc78cf9af05
  • 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
    4.0.37

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

TERM

xterm

ZBX_SOURCES

https://git.zabbix.com/scm/zbx/zabbix.git

ZBX_VERSION

4.0.37


Layers

[#000] sha256:f46992f278c2dd50c481ff60ce8528b6eb59016ac6243e1a7fb385c79c5944b9 - 23.59% (22.6 MB)

[#001] sha256:b8f08898faa9d1b0d377d6b81023a71b628f3db2a0de63afbac4f051026a1b66 - 8.57% (8.22 MB)

[#002] sha256:104bba6ea372eea50c5916fbbe86435bcff6a19ee986884ebff4186d6c7d58f3 - 0.0% (4.37 KB)

[#003] sha256:c22b219a067bd976203000749e2c52434bfbdb91ce841247c2c1766780ada7c2 - 67.83% (65.1 MB)

[#004] sha256:b96c17f9ac34850d57189f978639e791078da1a4b1a6dd4b93eee3c531400de2 - 0.0% (2.52 KB)


History
2021-10-16 01:47:38 UTC

/bin/sh -c #(nop) ADD file:35e2504756850fc1add00516fa89b0499b59c348457a96708eedb61313e7b25e in /

2021-10-16 01:47:38 UTC

/bin/sh -c #(nop) CMD ["bash"]

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

ARG MAJOR_VERSION

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

ARG ZBX_VERSION

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

ENV TERM=xterm ZBX_VERSION=4.0.37 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git

2021-12-23 18:02:40 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/4.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=4.0.37

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

STOPSIGNAL SIGTERM

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

COPY /tmp/zabbix-4.0.37/frontends/php /usr/share/zabbix # buildkit

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

COPY conf/etc/ /etc/ # buildkit

2021-12-23 18:19:13 UTC (buildkit.dockerfile.v0)

RUN |3 MAJOR_VERSION=4.0 ZBX_VERSION=4.0.37 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && echo "#!/bin/sh\nexit 101" > /usr/sbin/policy-rc.d && INSTALL_PKGS="bash ca-certificates curl mysql-client nginx locales php7.2-bcmath php7.2-fpm php7.2-gd php7.2-json php7.2-ldap php7.2-mbstring php7.2-mysql php7.2-xml supervisor" && INSTALL_TEMP_PKGS="gpg ca-certificates dirmngr gpg-agent" && apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install ${INSTALL_TEMP_PKGS} && NGINX_GPGKEY=573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62; found=''; for server in ha.pool.sks-keyservers.net hkp://keyserver.ubuntu.com:80 hkp://p80.pool.sks-keyservers.net:80 pgp.mit.edu ; do echo "Fetching GPG key $NGINX_GPGKEY from $server"; apt-key adv --keyserver "$server" --keyserver-options timeout=10 --recv-keys "$NGINX_GPGKEY" && found=yes && break; done; test -z "$found" && echo >&2 "error: failed to fetch GPG key $NGINX_GPGKEY" && exit 1; DISTRIB_CODENAME=$(/bin/bash -c 'source /etc/lsb-release && echo $DISTRIB_CODENAME') && echo "deb https://nginx.org/packages/ubuntu/ $DISTRIB_CODENAME nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --no-install-recommends install ${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 /var/lib/php/session && rm -f /etc/nginx/conf.d/*.conf && rm -rf /var/cache/nginx/ && rm -f /etc/php/7.2/fpm/pool.d/www.conf && ln -sf /dev/fd/2 /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" && mkdir -p /var/lib/locales/supported.d/ && rm -f /var/lib/locales/supported.d/local && 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 "{}.UTF-8 UTF-8" >> /var/lib/locales/supported.d/local' && dpkg-reconfigure locales && chown --quiet -R zabbix:root /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php && chgrp -R 0 /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php && chmod -R g=u /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php && chown --quiet -R zabbix:root /etc/nginx/ /etc/php/7.2/fpm/php-fpm.conf /etc/php/7.2/fpm/pool.d/ && chgrp -R 0 /etc/nginx/ /etc/php/7.2/fpm/php-fpm.conf /etc/php/7.2/fpm/pool.d/ && chmod -R g=u /etc/nginx/ /etc/php/7.2/fpm/php-fpm.conf /etc/php/7.2/fpm/pool.d/ && chown --quiet -R zabbix:root /var/lib/php/session/ && chgrp -R 0 /var/lib/php/session/ && chmod -R g=u /var/lib/php/session/ && DEBIAN_FRONTEND=noninteractive apt-get -y purge gpg dirmngr gpg-agent && apt-get -y autoremove && apt-get -y clean && rm -rf /var/lib/apt/lists/* # buildkit

2021-12-23 18:19:13 UTC (buildkit.dockerfile.v0)

EXPOSE map[8080/tcp:{} 8443/tcp:{}]

2021-12-23 18:19:13 UTC (buildkit.dockerfile.v0)

WORKDIR /usr/share/zabbix

2021-12-23 18:19:13 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint.sh /usr/bin/ # buildkit

2021-12-23 18:19:13 UTC (buildkit.dockerfile.v0)

USER 1997

2021-12-23 18:19:13 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["docker-entrypoint.sh"]

Details
Created

2021-12-23 18:18:02 UTC

Size

99.2 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    Alexey Pustovalov <[email protected]>
  • org.opencontainers.image.created
    2021-12-23T18:02:01.451Z
  • 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/4.0/manual/installation/containers
  • org.opencontainers.image.licenses
    GPL v2.0
  • org.opencontainers.image.revision
    e3444336cb91a8b274566919f87a2bc78cf9af05
  • 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
    4.0.37

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

TERM

xterm

ZBX_SOURCES

https://git.zabbix.com/scm/zbx/zabbix.git

ZBX_VERSION

4.0.37


Layers

[#000] sha256:97372e5b313b6b8bab9913de546bc50f73818d8275c94fc6491993c97b9d8bad - 24.37% (24.2 MB)

[#001] sha256:5f97aafce18e4ef75f3e6c9299ecaf5f234fdff1708a647842ff24d51c4a4511 - 8.28% (8.22 MB)

[#002] sha256:104bba6ea372eea50c5916fbbe86435bcff6a19ee986884ebff4186d6c7d58f3 - 0.0% (4.37 KB)

[#003] sha256:098e55f12a7dda6aeb8898f1faf0082039e8e3a55a89633dfb2e3ee3bea9e923 - 67.34% (66.8 MB)

[#004] sha256:d3146d58a1c8d7954b5fc98fbfe71958a48fc80ec1a47ebadf450723f3492932 - 0.0% (2.52 KB)


History
2021-10-01 01:42:17 UTC

/bin/sh -c #(nop) ADD file:d248d4b5739ee5d07e920ec481dc4af81b314aa52e64618322197a642394a41d in /

2021-10-01 01:42:19 UTC

/bin/sh -c #(nop) CMD ["bash"]

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

ARG MAJOR_VERSION

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

ARG ZBX_VERSION

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

ENV TERM=xterm ZBX_VERSION=4.0.37 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git

2021-12-23 18:02:40 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/4.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=4.0.37

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

STOPSIGNAL SIGTERM

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

COPY /tmp/zabbix-4.0.37/frontends/php /usr/share/zabbix # buildkit

2021-12-23 18:02:40 UTC (buildkit.dockerfile.v0)

COPY conf/etc/ /etc/ # buildkit

2021-12-23 18:18:02 UTC (buildkit.dockerfile.v0)

RUN |3 MAJOR_VERSION=4.0 ZBX_VERSION=4.0.37 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git /bin/sh -c set -eux && echo "#!/bin/sh\nexit 101" > /usr/sbin/policy-rc.d && INSTALL_PKGS="bash ca-certificates curl mysql-client nginx locales php7.2-bcmath php7.2-fpm php7.2-gd php7.2-json php7.2-ldap php7.2-mbstring php7.2-mysql php7.2-xml supervisor" && INSTALL_TEMP_PKGS="gpg ca-certificates dirmngr gpg-agent" && apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install ${INSTALL_TEMP_PKGS} && NGINX_GPGKEY=573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62; found=''; for server in ha.pool.sks-keyservers.net hkp://keyserver.ubuntu.com:80 hkp://p80.pool.sks-keyservers.net:80 pgp.mit.edu ; do echo "Fetching GPG key $NGINX_GPGKEY from $server"; apt-key adv --keyserver "$server" --keyserver-options timeout=10 --recv-keys "$NGINX_GPGKEY" && found=yes && break; done; test -z "$found" && echo >&2 "error: failed to fetch GPG key $NGINX_GPGKEY" && exit 1; DISTRIB_CODENAME=$(/bin/bash -c 'source /etc/lsb-release && echo $DISTRIB_CODENAME') && echo "deb https://nginx.org/packages/ubuntu/ $DISTRIB_CODENAME nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get -y update && DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --no-install-recommends install ${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 /var/lib/php/session && rm -f /etc/nginx/conf.d/*.conf && rm -rf /var/cache/nginx/ && rm -f /etc/php/7.2/fpm/pool.d/www.conf && ln -sf /dev/fd/2 /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" && mkdir -p /var/lib/locales/supported.d/ && rm -f /var/lib/locales/supported.d/local && 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 "{}.UTF-8 UTF-8" >> /var/lib/locales/supported.d/local' && dpkg-reconfigure locales && chown --quiet -R zabbix:root /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php && chgrp -R 0 /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php && chmod -R g=u /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php && chown --quiet -R zabbix:root /etc/nginx/ /etc/php/7.2/fpm/php-fpm.conf /etc/php/7.2/fpm/pool.d/ && chgrp -R 0 /etc/nginx/ /etc/php/7.2/fpm/php-fpm.conf /etc/php/7.2/fpm/pool.d/ && chmod -R g=u /etc/nginx/ /etc/php/7.2/fpm/php-fpm.conf /etc/php/7.2/fpm/pool.d/ && chown --quiet -R zabbix:root /var/lib/php/session/ && chgrp -R 0 /var/lib/php/session/ && chmod -R g=u /var/lib/php/session/ && DEBIAN_FRONTEND=noninteractive apt-get -y purge gpg dirmngr gpg-agent && apt-get -y autoremove && apt-get -y clean && rm -rf /var/lib/apt/lists/* # buildkit

2021-12-23 18:18:02 UTC (buildkit.dockerfile.v0)

EXPOSE map[8080/tcp:{} 8443/tcp:{}]

2021-12-23 18:18:02 UTC (buildkit.dockerfile.v0)

WORKDIR /usr/share/zabbix

2021-12-23 18:18:02 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint.sh /usr/bin/ # buildkit

2021-12-23 18:18:02 UTC (buildkit.dockerfile.v0)

USER 1997

2021-12-23 18:18:02 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["docker-entrypoint.sh"]

Danger Zone
Delete Tag

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.

Delete