Namespace
zabbix
Image / Tag
zabbix-web-nginx-mysql:5.4-ubuntu-latest
Content Digest
sha256:fec53e3cd61c69974438205eb213f52d440b2b70cd00c6b968f229e54af022f6
Details
Created

2022-04-20 19:31:39 UTC

Size

114 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    Alexey Pustovalov <[email protected]>
  • org.opencontainers.image.created
    2022-04-20T19:27:53.325Z
  • org.opencontainers.image.description
    Zabbix web-interface based on Nginx web server with MySQL database support
  • org.opencontainers.image.documentation
    https://www.zabbix.com/documentation/5.4/manual/installation/containers
  • org.opencontainers.image.licenses
    GPL v2.0
  • org.opencontainers.image.revision
    dbc5acccc5d3807f64d1d31136a4aa5bb6b74b41
  • org.opencontainers.image.source
    https://git.zabbix.com/scm/zbx/zabbix.git
  • org.opencontainers.image.title
    Zabbix web-interface (Nginx, MySQL)
  • org.opencontainers.image.url
    https://zabbix.com/
  • org.opencontainers.image.vendor
    Zabbix LLC
  • org.opencontainers.image.version
    5.4.12

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

5.4.12


Layers

[#000] sha256:e0b25ef516347a097d75f8aea6bc0f42a4e8e70b057e84d85098d51f96d458f9 - 23.8% (27.2 MB)

[#001] sha256:1cac21c474ff67636aeb5356a6e693dc2f92a1f249dc4820cfe0ec5468ed9935 - 8.12% (9.29 MB)

[#002] sha256:c4c855318d6f2ffcb301d41d7232a7a97034b64b85e0a83e59b382b2b0002c94 - 0.0% (4.92 KB)

[#003] sha256:2367a47a2e75c0bb29d19aa83d5fde410d9fec3a81ff1f4708fa3ff11f107d2d - 68.08% (77.9 MB)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:db32799a6ba89031e4e10cd0bb0b9bef642e5fa28d2c2eda46f02117737d8e71 - 0.0% (2.62 KB)


History
2022-04-05 22:20:50 UTC

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

2022-04-05 22:20:51 UTC

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

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

ARG MAJOR_VERSION

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

ARG ZBX_VERSION

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

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

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

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

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

LABEL org.opencontainers.image.authors=Alexey Pustovalov <[email protected]> org.opencontainers.image.description=Zabbix web-interface based on Nginx web server with MySQL database support org.opencontainers.image.documentation=https://www.zabbix.com/documentation/5.4/manual/installation/containers org.opencontainers.image.licenses=GPL v2.0 org.opencontainers.image.source=https://git.zabbix.com/scm/zbx/zabbix.git org.opencontainers.image.title=Zabbix web-interface (Nginx, MySQL) org.opencontainers.image.url=https://zabbix.com/ org.opencontainers.image.vendor=Zabbix LLC org.opencontainers.image.version=5.4.12

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

STOPSIGNAL SIGTERM

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

COPY /tmp/zabbix-5.4.12/ui /usr/share/zabbix # buildkit

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

COPY conf/etc/ /etc/ # buildkit

2022-04-20 19:31:38 UTC (buildkit.dockerfile.v0)

RUN |3 MAJOR_VERSION=5.4 ZBX_VERSION=5.4.12 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.4-bcmath php7.4-fpm php7.4-gd php7.4-json php7.4-ldap php7.4-mbstring php7.4-mysql php7.4-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 /etc/zabbix/web/certs && mkdir -p /var/lib/php/session && rm -f /etc/nginx/conf.d/*.conf && rm -rf /var/cache/nginx/ && rm -f /etc/php/7.4/fpm/pool.d/www.conf && ln -sf /dev/fd/2 /var/log/nginx/error.log && rm -f /etc/php/7.4/fpm/php-fpm.conf.dpkg-dist && 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 /usr/share/zabbix/modules/ && chgrp -R 0 /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && chmod -R g=u /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && chown --quiet -R zabbix:root /etc/nginx/ /etc/php/7.4/fpm/php-fpm.conf /etc/php/7.4/fpm/pool.d/ && chgrp -R 0 /etc/nginx/ /etc/php/7.4/fpm/php-fpm.conf /etc/php/7.4/fpm/pool.d/ && chmod -R g=u /etc/nginx/ /etc/php/7.4/fpm/php-fpm.conf /etc/php/7.4/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

2022-04-20 19:31:38 UTC (buildkit.dockerfile.v0)

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

2022-04-20 19:31:39 UTC (buildkit.dockerfile.v0)

WORKDIR /usr/share/zabbix

2022-04-20 19:31:39 UTC (buildkit.dockerfile.v0)

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

2022-04-20 19:31:39 UTC (buildkit.dockerfile.v0)

USER 1997

2022-04-20 19:31:39 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["docker-entrypoint.sh"]

Details
Created

2022-04-20 19:51:36 UTC

Size

108 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    Alexey Pustovalov <[email protected]>
  • org.opencontainers.image.created
    2022-04-20T19:27:53.325Z
  • org.opencontainers.image.description
    Zabbix web-interface based on Nginx web server with MySQL database support
  • org.opencontainers.image.documentation
    https://www.zabbix.com/documentation/5.4/manual/installation/containers
  • org.opencontainers.image.licenses
    GPL v2.0
  • org.opencontainers.image.revision
    dbc5acccc5d3807f64d1d31136a4aa5bb6b74b41
  • org.opencontainers.image.source
    https://git.zabbix.com/scm/zbx/zabbix.git
  • org.opencontainers.image.title
    Zabbix web-interface (Nginx, MySQL)
  • org.opencontainers.image.url
    https://zabbix.com/
  • org.opencontainers.image.vendor
    Zabbix LLC
  • org.opencontainers.image.version
    5.4.12

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

5.4.12


Layers

[#000] sha256:de340d6c69b8bed917b969ad75b8fe4fe951502bc050b013dc9151c3632fb704 - 21.17% (23 MB)

[#001] sha256:97ee7dc7668e4763eb3e0d7214cdcafdb658f4dc83211196b3a13f2799541213 - 8.57% (9.29 MB)

[#002] sha256:19935eca24bd8c3abecc3419bb644e15352afd8c89f7e76fe06934103508bf31 - 0.0% (4.93 KB)

[#003] sha256:e0d3ccc2320b76fc9138402662e2f6daaef797e35576381311bb75e65bfdcf29 - 70.25% (76.2 MB)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:d580ac5fbb943425e5fb163fc4ab8288e0b4946c5034bde5e9ee876f530687f3 - 0.0% (2.63 KB)


History
2022-04-06 03:26:01 UTC

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

2022-04-06 03:26:01 UTC

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

2022-04-20 19:28:49 UTC (buildkit.dockerfile.v0)

ARG MAJOR_VERSION

2022-04-20 19:28:49 UTC (buildkit.dockerfile.v0)

ARG ZBX_VERSION

2022-04-20 19:28:49 UTC (buildkit.dockerfile.v0)

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

2022-04-20 19:28:49 UTC (buildkit.dockerfile.v0)

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

2022-04-20 19:28:49 UTC (buildkit.dockerfile.v0)

LABEL org.opencontainers.image.authors=Alexey Pustovalov <[email protected]> org.opencontainers.image.description=Zabbix web-interface based on Nginx web server with MySQL database support org.opencontainers.image.documentation=https://www.zabbix.com/documentation/5.4/manual/installation/containers org.opencontainers.image.licenses=GPL v2.0 org.opencontainers.image.source=https://git.zabbix.com/scm/zbx/zabbix.git org.opencontainers.image.title=Zabbix web-interface (Nginx, MySQL) org.opencontainers.image.url=https://zabbix.com/ org.opencontainers.image.vendor=Zabbix LLC org.opencontainers.image.version=5.4.12

2022-04-20 19:28:49 UTC (buildkit.dockerfile.v0)

STOPSIGNAL SIGTERM

2022-04-20 19:28:49 UTC (buildkit.dockerfile.v0)

COPY /tmp/zabbix-5.4.12/ui /usr/share/zabbix # buildkit

2022-04-20 19:28:49 UTC (buildkit.dockerfile.v0)

COPY conf/etc/ /etc/ # buildkit

2022-04-20 19:51:36 UTC (buildkit.dockerfile.v0)

RUN |3 MAJOR_VERSION=5.4 ZBX_VERSION=5.4.12 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.4-bcmath php7.4-fpm php7.4-gd php7.4-json php7.4-ldap php7.4-mbstring php7.4-mysql php7.4-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 /etc/zabbix/web/certs && mkdir -p /var/lib/php/session && rm -f /etc/nginx/conf.d/*.conf && rm -rf /var/cache/nginx/ && rm -f /etc/php/7.4/fpm/pool.d/www.conf && ln -sf /dev/fd/2 /var/log/nginx/error.log && rm -f /etc/php/7.4/fpm/php-fpm.conf.dpkg-dist && 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 /usr/share/zabbix/modules/ && chgrp -R 0 /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && chmod -R g=u /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && chown --quiet -R zabbix:root /etc/nginx/ /etc/php/7.4/fpm/php-fpm.conf /etc/php/7.4/fpm/pool.d/ && chgrp -R 0 /etc/nginx/ /etc/php/7.4/fpm/php-fpm.conf /etc/php/7.4/fpm/pool.d/ && chmod -R g=u /etc/nginx/ /etc/php/7.4/fpm/php-fpm.conf /etc/php/7.4/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

2022-04-20 19:51:36 UTC (buildkit.dockerfile.v0)

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

2022-04-20 19:51:36 UTC (buildkit.dockerfile.v0)

WORKDIR /usr/share/zabbix

2022-04-20 19:51:36 UTC (buildkit.dockerfile.v0)

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

2022-04-20 19:51:36 UTC (buildkit.dockerfile.v0)

USER 1997

2022-04-20 19:51:36 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["docker-entrypoint.sh"]

Details
Created

2022-04-20 19:51:31 UTC

Size

115 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    Alexey Pustovalov <[email protected]>
  • org.opencontainers.image.created
    2022-04-20T19:27:53.325Z
  • org.opencontainers.image.description
    Zabbix web-interface based on Nginx web server with MySQL database support
  • org.opencontainers.image.documentation
    https://www.zabbix.com/documentation/5.4/manual/installation/containers
  • org.opencontainers.image.licenses
    GPL v2.0
  • org.opencontainers.image.revision
    dbc5acccc5d3807f64d1d31136a4aa5bb6b74b41
  • org.opencontainers.image.source
    https://git.zabbix.com/scm/zbx/zabbix.git
  • org.opencontainers.image.title
    Zabbix web-interface (Nginx, MySQL)
  • org.opencontainers.image.url
    https://zabbix.com/
  • org.opencontainers.image.vendor
    Zabbix LLC
  • org.opencontainers.image.version
    5.4.12

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

5.4.12


Layers

[#000] sha256:185e8a4c100571f111d924b5d4399d89f163bf95d71ce2c6a33f656a66c52f0a - 22.51% (25.9 MB)

[#001] sha256:29c946b37ae12a889bfaf6914942fb4f325134c257f3d7a3c3dbcc2a2c50c576 - 8.07% (9.29 MB)

[#002] sha256:c4c855318d6f2ffcb301d41d7232a7a97034b64b85e0a83e59b382b2b0002c94 - 0.0% (4.92 KB)

[#003] sha256:51cb0e8c0909bd89f072637bd890d60f90233df11f8e67d2611a45111df65ae2 - 69.41% (79.9 MB)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:b31fd187cd0d3dc97812de8aeda3ebae8761f0c678fd9228b1daf25b02c8b830 - 0.0% (2.62 KB)


History
2022-04-05 22:40:59 UTC

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

2022-04-05 22:41:00 UTC

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

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

ARG MAJOR_VERSION

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

ARG ZBX_VERSION

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

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

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

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

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

LABEL org.opencontainers.image.authors=Alexey Pustovalov <[email protected]> org.opencontainers.image.description=Zabbix web-interface based on Nginx web server with MySQL database support org.opencontainers.image.documentation=https://www.zabbix.com/documentation/5.4/manual/installation/containers org.opencontainers.image.licenses=GPL v2.0 org.opencontainers.image.source=https://git.zabbix.com/scm/zbx/zabbix.git org.opencontainers.image.title=Zabbix web-interface (Nginx, MySQL) org.opencontainers.image.url=https://zabbix.com/ org.opencontainers.image.vendor=Zabbix LLC org.opencontainers.image.version=5.4.12

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

STOPSIGNAL SIGTERM

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

COPY /tmp/zabbix-5.4.12/ui /usr/share/zabbix # buildkit

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

COPY conf/etc/ /etc/ # buildkit

2022-04-20 19:51:31 UTC (buildkit.dockerfile.v0)

RUN |3 MAJOR_VERSION=5.4 ZBX_VERSION=5.4.12 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.4-bcmath php7.4-fpm php7.4-gd php7.4-json php7.4-ldap php7.4-mbstring php7.4-mysql php7.4-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 /etc/zabbix/web/certs && mkdir -p /var/lib/php/session && rm -f /etc/nginx/conf.d/*.conf && rm -rf /var/cache/nginx/ && rm -f /etc/php/7.4/fpm/pool.d/www.conf && ln -sf /dev/fd/2 /var/log/nginx/error.log && rm -f /etc/php/7.4/fpm/php-fpm.conf.dpkg-dist && 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 /usr/share/zabbix/modules/ && chgrp -R 0 /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && chmod -R g=u /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && chown --quiet -R zabbix:root /etc/nginx/ /etc/php/7.4/fpm/php-fpm.conf /etc/php/7.4/fpm/pool.d/ && chgrp -R 0 /etc/nginx/ /etc/php/7.4/fpm/php-fpm.conf /etc/php/7.4/fpm/pool.d/ && chmod -R g=u /etc/nginx/ /etc/php/7.4/fpm/php-fpm.conf /etc/php/7.4/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

2022-04-20 19:51:31 UTC (buildkit.dockerfile.v0)

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

2022-04-20 19:51:31 UTC (buildkit.dockerfile.v0)

WORKDIR /usr/share/zabbix

2022-04-20 19:51:31 UTC (buildkit.dockerfile.v0)

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

2022-04-20 19:51:31 UTC (buildkit.dockerfile.v0)

USER 1997

2022-04-20 19:51:31 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["docker-entrypoint.sh"]

Details
Created

2022-04-20 19:51:11 UTC

Size

115 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    Alexey Pustovalov <[email protected]>
  • org.opencontainers.image.created
    2022-04-20T19:27:53.325Z
  • org.opencontainers.image.description
    Zabbix web-interface based on Nginx web server with MySQL database support
  • org.opencontainers.image.documentation
    https://www.zabbix.com/documentation/5.4/manual/installation/containers
  • org.opencontainers.image.licenses
    GPL v2.0
  • org.opencontainers.image.revision
    dbc5acccc5d3807f64d1d31136a4aa5bb6b74b41
  • org.opencontainers.image.source
    https://git.zabbix.com/scm/zbx/zabbix.git
  • org.opencontainers.image.title
    Zabbix web-interface (Nginx, MySQL)
  • org.opencontainers.image.url
    https://zabbix.com/
  • org.opencontainers.image.vendor
    Zabbix LLC
  • org.opencontainers.image.version
    5.4.12

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

5.4.12


Layers

[#000] sha256:502c7975d4ed549ab7d6e63b9ea10b0d24c1c3c12a33540d91d6739a0218faec - 22.45% (25.8 MB)

[#001] sha256:485a49678e02775af34e35e0d760398a12ab57973c54f274bd65028d2ba0b5ff - 8.08% (9.29 MB)

[#002] sha256:c4c855318d6f2ffcb301d41d7232a7a97034b64b85e0a83e59b382b2b0002c94 - 0.0% (4.92 KB)

[#003] sha256:5d8cbc102d8fac13cab601669be9ce7b20392c5ea0146fdfc6b96f12d35f8076 - 69.47% (79.9 MB)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:c24153a11a71e0370f3c977c933a50ac1426584e760eb7b6e89be1e94ebd5614 - 0.0% (2.63 KB)


History
2022-04-05 22:42:05 UTC

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

2022-04-05 22:42:07 UTC

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

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

ARG MAJOR_VERSION

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

ARG ZBX_VERSION

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

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

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

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

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

LABEL org.opencontainers.image.authors=Alexey Pustovalov <[email protected]> org.opencontainers.image.description=Zabbix web-interface based on Nginx web server with MySQL database support org.opencontainers.image.documentation=https://www.zabbix.com/documentation/5.4/manual/installation/containers org.opencontainers.image.licenses=GPL v2.0 org.opencontainers.image.source=https://git.zabbix.com/scm/zbx/zabbix.git org.opencontainers.image.title=Zabbix web-interface (Nginx, MySQL) org.opencontainers.image.url=https://zabbix.com/ org.opencontainers.image.vendor=Zabbix LLC org.opencontainers.image.version=5.4.12

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

STOPSIGNAL SIGTERM

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

COPY /tmp/zabbix-5.4.12/ui /usr/share/zabbix # buildkit

2022-04-20 19:29:06 UTC (buildkit.dockerfile.v0)

COPY conf/etc/ /etc/ # buildkit

2022-04-20 19:51:11 UTC (buildkit.dockerfile.v0)

RUN |3 MAJOR_VERSION=5.4 ZBX_VERSION=5.4.12 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.4-bcmath php7.4-fpm php7.4-gd php7.4-json php7.4-ldap php7.4-mbstring php7.4-mysql php7.4-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 /etc/zabbix/web/certs && mkdir -p /var/lib/php/session && rm -f /etc/nginx/conf.d/*.conf && rm -rf /var/cache/nginx/ && rm -f /etc/php/7.4/fpm/pool.d/www.conf && ln -sf /dev/fd/2 /var/log/nginx/error.log && rm -f /etc/php/7.4/fpm/php-fpm.conf.dpkg-dist && 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 /usr/share/zabbix/modules/ && chgrp -R 0 /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && chmod -R g=u /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && chown --quiet -R zabbix:root /etc/nginx/ /etc/php/7.4/fpm/php-fpm.conf /etc/php/7.4/fpm/pool.d/ && chgrp -R 0 /etc/nginx/ /etc/php/7.4/fpm/php-fpm.conf /etc/php/7.4/fpm/pool.d/ && chmod -R g=u /etc/nginx/ /etc/php/7.4/fpm/php-fpm.conf /etc/php/7.4/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

2022-04-20 19:51:11 UTC (buildkit.dockerfile.v0)

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

2022-04-20 19:51:11 UTC (buildkit.dockerfile.v0)

WORKDIR /usr/share/zabbix

2022-04-20 19:51:11 UTC (buildkit.dockerfile.v0)

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

2022-04-20 19:51:11 UTC (buildkit.dockerfile.v0)

USER 1997

2022-04-20 19:51:11 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