Namespace
zabbix
Image / Tag
zabbix-web-nginx-mysql:5.0.28-ubuntu
Content Digest
sha256:79ded8d2b113d03cce718d357365745948b5de2cc42ef2efe5410e73d59d6c2d
Details
Created

2022-09-19 16:35:01 UTC

Size

116 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    Alexey Pustovalov <[email protected]>
  • org.opencontainers.image.created
    2022-09-19T16:30:54.096Z
  • 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.0/manual/installation/containers
  • org.opencontainers.image.licenses
    GPL v2.0
  • org.opencontainers.image.revision
    57dc5baf8603a88e7e7d4d1e4279fe124adfb507
  • 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.0.28

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.0.28


Layers

[#000] sha256:675920708c8bf10fbd02693dc8f43ee7dbe0a99cdfd55e06e6f1a8b43fd08e3f - 23.43% (27.2 MB)

[#001] sha256:e2c85159467369a1f8b0f75751884e7f6714ec3ccdd0937c5727d7760b8be583 - 7.96% (9.25 MB)

[#002] sha256:3b12e3e9d10b45f26fb424a4ab0d154281bf2ef3438d960338c54414a929aef4 - 0.0% (4.97 KB)

[#003] sha256:33e4b8273794df4a7ae38976e757beca263c96f67370f8b6cf3eb5776e6a94a3 - 68.61% (79.8 MB)

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

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


History
2022-09-01 23:46:26 UTC

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

2022-09-01 23:46:27 UTC

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

2022-09-19 16:32:02 UTC (buildkit.dockerfile.v0)

ARG MAJOR_VERSION

2022-09-19 16:32:02 UTC (buildkit.dockerfile.v0)

ARG ZBX_VERSION

2022-09-19 16:32:02 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:32:02 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:32:02 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.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=5.0.28

2022-09-19 16:32:02 UTC (buildkit.dockerfile.v0)

STOPSIGNAL SIGTERM

2022-09-19 16:32:02 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:32:02 UTC (buildkit.dockerfile.v0)

COPY conf/etc/ /etc/ # buildkit

2022-09-19 16:35:01 UTC (buildkit.dockerfile.v0)

RUN |3 MAJOR_VERSION=5.0 ZBX_VERSION=5.0.28 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-09-19 16:35:01 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:35:01 UTC (buildkit.dockerfile.v0)

WORKDIR /usr/share/zabbix

2022-09-19 16:35:01 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:35:01 UTC (buildkit.dockerfile.v0)

USER 1997

2022-09-19 16:35:01 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["docker-entrypoint.sh"]

Details
Created

2022-09-19 16:55:52 UTC

Size

111 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    Alexey Pustovalov <[email protected]>
  • org.opencontainers.image.created
    2022-09-19T16:30:54.096Z
  • 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.0/manual/installation/containers
  • org.opencontainers.image.licenses
    GPL v2.0
  • org.opencontainers.image.revision
    57dc5baf8603a88e7e7d4d1e4279fe124adfb507
  • 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.0.28

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.0.28


Layers

[#000] sha256:eff72fca8e1d166ddfda6ac6c409e888c95950da6c47d360a088219c0ad7ba05 - 21.16% (23.4 MB)

[#001] sha256:d1526a851b136b368abcaae73eb3ab2dd142df3dcb7d75b8bb01b32541b51cfd - 8.35% (9.25 MB)

[#002] sha256:7f2ffb5c6e161287265fc2f1369b608cc2fe1b19282ee8ad24e2cc33e42075aa - 0.0% (4.96 KB)

[#003] sha256:cb22769fb27813fbe91afd679f4afd12ec364462150e47cba5fe52b25386c421 - 70.48% (78.1 MB)

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

[#005] sha256:48e3f12eaa2f96707c67bd169efb226bcfa054971e69a06b5caa76a5496dc9a1 - 0.0% (2.64 KB)


History
2022-09-02 06:08:22 UTC

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

2022-09-02 06:08:22 UTC

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

2022-09-19 16:31:57 UTC (buildkit.dockerfile.v0)

ARG MAJOR_VERSION

2022-09-19 16:31:57 UTC (buildkit.dockerfile.v0)

ARG ZBX_VERSION

2022-09-19 16:31:57 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:31:57 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:31:57 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.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=5.0.28

2022-09-19 16:31:57 UTC (buildkit.dockerfile.v0)

STOPSIGNAL SIGTERM

2022-09-19 16:31:57 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:31:57 UTC (buildkit.dockerfile.v0)

COPY conf/etc/ /etc/ # buildkit

2022-09-19 16:55:52 UTC (buildkit.dockerfile.v0)

RUN |3 MAJOR_VERSION=5.0 ZBX_VERSION=5.0.28 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-09-19 16:55:52 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:55:52 UTC (buildkit.dockerfile.v0)

WORKDIR /usr/share/zabbix

2022-09-19 16:55:52 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:55:52 UTC (buildkit.dockerfile.v0)

USER 1997

2022-09-19 16:55:52 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["docker-entrypoint.sh"]

Details
Created

2022-09-19 16:55:11 UTC

Size

117 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    Alexey Pustovalov <[email protected]>
  • org.opencontainers.image.created
    2022-09-19T16:30:54.096Z
  • 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.0/manual/installation/containers
  • org.opencontainers.image.licenses
    GPL v2.0
  • org.opencontainers.image.revision
    57dc5baf8603a88e7e7d4d1e4279fe124adfb507
  • 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.0.28

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.0.28


Layers

[#000] sha256:7a9f619ee5e9c87f19eed59abef41d53eb0694f492da010ee069ff26e7b4ff3f - 22.16% (25.9 MB)

[#001] sha256:9d3facb9df30b616a7fcb4f1fa4ddad9d16ddf3fee9919bdaade83a63f1979a0 - 7.91% (9.25 MB)

[#002] sha256:43f5f46ce81ee38f92dc717b1f64cf50304b1a407aa54bee47f80095c37e3e2c - 0.0% (4.96 KB)

[#003] sha256:e72b18337648b483a28bb70ab195ffd5b51026731dce34b5dd2e88fb9015bfa1 - 69.92% (81.8 MB)

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

[#005] sha256:4feeb252956b629ba98384a4fe1eb969f631b8168f44623f006ccee1551ac9e4 - 0.0% (2.64 KB)


History
2022-09-02 00:57:42 UTC

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

2022-09-02 00:57:43 UTC

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

2022-09-19 16:32:06 UTC (buildkit.dockerfile.v0)

ARG MAJOR_VERSION

2022-09-19 16:32:06 UTC (buildkit.dockerfile.v0)

ARG ZBX_VERSION

2022-09-19 16:32:06 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:32:06 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:32: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.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=5.0.28

2022-09-19 16:32:06 UTC (buildkit.dockerfile.v0)

STOPSIGNAL SIGTERM

2022-09-19 16:32:06 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:32:06 UTC (buildkit.dockerfile.v0)

COPY conf/etc/ /etc/ # buildkit

2022-09-19 16:55:11 UTC (buildkit.dockerfile.v0)

RUN |3 MAJOR_VERSION=5.0 ZBX_VERSION=5.0.28 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-09-19 16:55:11 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:55:11 UTC (buildkit.dockerfile.v0)

WORKDIR /usr/share/zabbix

2022-09-19 16:55:11 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:55:11 UTC (buildkit.dockerfile.v0)

USER 1997

2022-09-19 16:55:11 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["docker-entrypoint.sh"]

Details
Created

2022-09-19 16:54:49 UTC

Size

117 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    Alexey Pustovalov <[email protected]>
  • org.opencontainers.image.created
    2022-09-19T16:30:54.096Z
  • 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.0/manual/installation/containers
  • org.opencontainers.image.licenses
    GPL v2.0
  • org.opencontainers.image.revision
    57dc5baf8603a88e7e7d4d1e4279fe124adfb507
  • 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.0.28

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.0.28


Layers

[#000] sha256:b87ab7b8bb5c2a1f34d9a2e9887fde669c33cea7428fdb048362dfa81eccaa75 - 22.03% (25.8 MB)

[#001] sha256:d837ef273cbfbd89ba248947f62e040fdd4a79070b0936a8b969d73261f2a338 - 7.9% (9.25 MB)

[#002] sha256:7f2ffb5c6e161287265fc2f1369b608cc2fe1b19282ee8ad24e2cc33e42075aa - 0.0% (4.96 KB)

[#003] sha256:b39372099c76bf97dd9c0a176cac33b94fd27cadc1568b89340b0c6ec114c6c9 - 70.06% (82 MB)

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

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


History
2022-09-02 01:03:13 UTC

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

2022-09-02 01:03:16 UTC

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

2022-09-19 16:31:57 UTC (buildkit.dockerfile.v0)

ARG MAJOR_VERSION

2022-09-19 16:31:57 UTC (buildkit.dockerfile.v0)

ARG ZBX_VERSION

2022-09-19 16:31:57 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:31:57 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:31:57 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.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=5.0.28

2022-09-19 16:31:57 UTC (buildkit.dockerfile.v0)

STOPSIGNAL SIGTERM

2022-09-19 16:31:57 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:31:57 UTC (buildkit.dockerfile.v0)

COPY conf/etc/ /etc/ # buildkit

2022-09-19 16:54:49 UTC (buildkit.dockerfile.v0)

RUN |3 MAJOR_VERSION=5.0 ZBX_VERSION=5.0.28 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-09-19 16:54:49 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:54:49 UTC (buildkit.dockerfile.v0)

WORKDIR /usr/share/zabbix

2022-09-19 16:54:49 UTC (buildkit.dockerfile.v0)

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

2022-09-19 16:54:49 UTC (buildkit.dockerfile.v0)

USER 1997

2022-09-19 16:54:49 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