docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest linux/amd64
docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest - 国内下载镜像源 浏览次数:127
温馨提示:此镜像为latest tag镜像,本站无法保证此版本为最新镜像
Zabbix Web Nginx MySQL
基于docker.io/zabbix/zabbix-web-nginx-mysql镜像
该镜像包含Zabbix前端和数据库,使用Nginx作为Web服务器,MySQL作为数据库。
支持Zabbix的监控功能和告警系统。
镜像大小:大约为1GB
源镜像 | docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest |
国内镜像 | swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest |
镜像ID | sha256:2032fa054d99812e236b565fb332b9e46d38139e759f80de3177951125746701 |
镜像TAG | ubuntu-7.2-latest |
大小 | 457.13MB |
镜像源 | docker.io |
项目信息 | Docker-Hub主页 🚀项目TAG 🚀 |
CMD | |
启动入口 | docker-entrypoint.sh |
工作目录 | /usr/share/zabbix |
OS/平台 | linux/amd64 |
浏览量 | 127 次 |
贡献者 | |
镜像创建 | 2025-01-28T16:07:03.738762451Z |
同步时间 | 2025-02-13 15:53 |
更新时间 | 2025-03-31 09:23 |
镜像安全扫描 查看Trivy扫描报告
系统OS: ubuntu 24.04 扫描引擎: Trivy 扫描时间: 2025-02-13 15:53
低危漏洞:17
Docker拉取命令 无权限下载?点我修复
docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest
docker tag swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest
Containerd拉取命令
ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest
ctr images tag swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest
Shell快速替换命令
sed -i 's#zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest#' deployment.yaml
Ansible快速分发-Docker
#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest && docker tag swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest'
Ansible快速分发-Containerd
#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest && ctr images tag swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest'
镜像构建历史
# 2025-01-29 00:07:03 0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
# 2025-01-29 00:07:03 0.00B 指定运行容器时使用的用户
USER 1997
# 2025-01-29 00:07:03 10.13KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh /usr/bin/ # buildkit
# 2025-01-29 00:07:03 0.00B 设置工作目录为/usr/share/zabbix
WORKDIR /usr/share/zabbix
# 2025-01-29 00:07:03 0.00B 声明容器运行时监听的端口
EXPOSE map[8080/tcp:{} 8443/tcp:{}]
# 2025-01-29 00:07:03 0.00B 指定检查容器健康状态的命令
HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:8080/ping || exit 1"] "1m30s" "3s" "40s" "5s" '\x03'}
# 2025-01-29 00:07:03 270.11MB 执行命令并创建新的镜像层
RUN |3 MAJOR_VERSION=7.2 ZBX_VERSION=7.2.3 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 tzdata ca-certificates curl mysql-client nginx locales libldap-common php8.3-bcmath php8.3-curl php8.3-fpm php8.3-gd php8.3-ldap php8.3-mbstring php8.3-mysql php8.3-xml supervisor" && 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 --uid 1997 --shell /sbin/nologin --home-dir /var/lib/zabbix/ zabbix && mkdir -p ${ZABBIX_CONF_DIR} && mkdir -p ${ZABBIX_CONF_DIR}/web && mkdir -p ${ZABBIX_CONF_DIR}/web/certs && mkdir -p /var/lib/php/session && rm -f /etc/nginx/conf.d/*.conf && rm -rf /var/cache/nginx/ && rm -f /etc/php/8.3/fpm/pool.d/www.conf && rm -f /etc/php/8.3/fpm/php-fpm.conf.dpkg-dist && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && cd ${ZABBIX_WWW_ROOT}/ && 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 ${ZABBIX_WWW_ROOT}/locale -name '*.po' | xargs rm -f && find ${ZABBIX_WWW_ROOT}/locale -name '*.sh' | xargs rm -f && ln -s "${ZABBIX_CONF_DIR}/web/zabbix.conf.php" "${ZABBIX_WWW_ROOT}/conf/zabbix.conf.php" && ln -s "${ZABBIX_CONF_DIR}/web/maintenance.inc.php" "${ZABBIX_WWW_ROOT}/conf/maintenance.inc.php" && mkdir -p /var/lib/locales/supported.d/ && rm -f /var/lib/locales/supported.d/local && cat ${ZABBIX_WWW_ROOT}/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 ${ZABBIX_CONF_DIR}/ ${ZABBIX_WWW_ROOT}/include/defines.inc.php ${ZABBIX_WWW_ROOT}/modules/ && chgrp -R 0 ${ZABBIX_CONF_DIR}/ ${ZABBIX_WWW_ROOT}/include/defines.inc.php ${ZABBIX_WWW_ROOT}/modules/ && chmod -R g=u ${ZABBIX_CONF_DIR}/ ${ZABBIX_WWW_ROOT}/include/defines.inc.php ${ZABBIX_WWW_ROOT}/modules/ && chown --quiet -R zabbix:root /etc/nginx/ /etc/php/8.3/fpm/php-fpm.conf /etc/php/8.3/fpm/pool.d/ && chgrp -R 0 /etc/nginx/ /etc/php/8.3/fpm/php-fpm.conf /etc/php/8.3/fpm/pool.d/ && chmod -R g=u /etc/nginx/ /etc/php/8.3/fpm/php-fpm.conf /etc/php/8.3/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/ # buildkit
# 2025-01-28 23:30:56 16.27KB 复制新文件或目录到容器中
COPY conf/etc/ /etc/ # buildkit
# 2025-01-28 23:30:56 108.87MB 复制新文件或目录到容器中
COPY /tmp/zabbix-7.2.3/ui /usr/share/zabbix # buildkit
# 2025-01-28 23:30:56 0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGTERM
# 2025-01-28 23:30:56 0.00B 添加元数据标签
LABEL org.opencontainers.image.authors=Alexey Pustovalov <alexey.pustovalov@zabbix.com> 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/7.2/manual/installation/containers org.opencontainers.image.licenses=AGPL v3.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=7.2.3
# 2025-01-28 23:30:56 0.00B 设置环境变量 TERM ZBX_VERSION ZBX_SOURCES ZABBIX_CONF_DIR ZABBIX_WWW_ROOT
ENV TERM=xterm ZBX_VERSION=7.2.3 ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git ZABBIX_CONF_DIR=/etc/zabbix ZABBIX_WWW_ROOT=/usr/share/zabbix
# 2025-01-28 23:30:56 0.00B 定义构建参数
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
# 2025-01-28 23:30:56 0.00B 定义构建参数
ARG ZBX_VERSION=7.2.3
# 2025-01-28 23:30:56 0.00B 定义构建参数
ARG MAJOR_VERSION=7.2
# 2024-11-20 01:29:25 0.00B
/bin/sh -c #(nop) CMD ["/bin/bash"]
# 2024-11-20 01:29:25 78.12MB
/bin/sh -c #(nop) ADD file:bcebbf0fddcba5b864d5d267b68dd23bcfb01275e6ec7bcab69bf8b56af14804 in /
# 2024-11-20 01:29:23 0.00B
/bin/sh -c #(nop) LABEL org.opencontainers.image.version=24.04
# 2024-11-20 01:29:23 0.00B
/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
# 2024-11-20 01:29:23 0.00B
/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
# 2024-11-20 01:29:23 0.00B
/bin/sh -c #(nop) ARG RELEASE
镜像信息
{
"Id": "sha256:2032fa054d99812e236b565fb332b9e46d38139e759f80de3177951125746701",
"RepoTags": [
"zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest",
"swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest"
],
"RepoDigests": [
"zabbix/zabbix-web-nginx-mysql@sha256:bcaf79aaf60b20e996b55551e05e685510410fb09895e4d47c263795f9f92b12",
"swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/zabbix/zabbix-web-nginx-mysql@sha256:961ff00e687c68c351725a05ee76c1375ffa0ec91d69b83033bebe0747ee2042"
],
"Parent": "",
"Comment": "buildkit.dockerfile.v0",
"Created": "2025-01-28T16:07:03.738762451Z",
"Container": "",
"ContainerConfig": null,
"DockerVersion": "",
"Author": "",
"Config": {
"Hostname": "",
"Domainname": "",
"User": "1997",
"AttachStdin": false,
"AttachStdout": false,
"AttachStderr": false,
"ExposedPorts": {
"8080/tcp": {},
"8443/tcp": {}
},
"Tty": false,
"OpenStdin": false,
"StdinOnce": false,
"Env": [
"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
"TERM=xterm",
"ZBX_VERSION=7.2.3",
"ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git",
"ZABBIX_CONF_DIR=/etc/zabbix",
"ZABBIX_WWW_ROOT=/usr/share/zabbix"
],
"Cmd": null,
"Healthcheck": {
"Test": [
"CMD-SHELL",
"curl -f http://localhost:8080/ping || exit 1"
],
"Interval": 90000000000,
"Timeout": 3000000000,
"StartPeriod": 40000000000,
"StartInterval": 5000000000,
"Retries": 3
},
"Image": "",
"Volumes": null,
"WorkingDir": "/usr/share/zabbix",
"Entrypoint": [
"docker-entrypoint.sh"
],
"OnBuild": null,
"Labels": {
"org.opencontainers.image.authors": "Alexey Pustovalov \u003calexey.pustovalov@zabbix.com\u003e",
"org.opencontainers.image.created": "2025-01-28T15:30:07.425Z",
"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/7.2/manual/installation/containers",
"org.opencontainers.image.licenses": "AGPL v3.0",
"org.opencontainers.image.ref.name": "ubuntu",
"org.opencontainers.image.revision": "7f8b165e031350283462f30bd1d7fa4ce6fdcfab",
"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": "7.2.3"
},
"StopSignal": "SIGTERM"
},
"Architecture": "amd64",
"Os": "linux",
"Size": 457125523,
"GraphDriver": {
"Data": {
"LowerDir": "/var/lib/docker/overlay2/d6372f40e6516d111289085f9be0ff1bfbfe293e6f7da5d1853e3101ebdd33a2/diff:/var/lib/docker/overlay2/819c1c33e413507aa2bd32c1643dabc19425ad43567a1dbf80551289a364bc91/diff:/var/lib/docker/overlay2/4a8e351112c311165100ab49fdf80ae7ac8f739564e07dd95faed3c70a95c3a5/diff:/var/lib/docker/overlay2/06eaf20f1383477b7b55d5fcbfe731a13e1e6ecc0f147d959958b710bf061cc2/diff:/var/lib/docker/overlay2/dd9c6c06cee7cbeacd7427404922c280abf5a7156d6a8d1736426b0776ed9b6a/diff",
"MergedDir": "/var/lib/docker/overlay2/820a82d97b279e0458f6bff0ff075dbf66e54d1532db27daa24ac091e37e7f11/merged",
"UpperDir": "/var/lib/docker/overlay2/820a82d97b279e0458f6bff0ff075dbf66e54d1532db27daa24ac091e37e7f11/diff",
"WorkDir": "/var/lib/docker/overlay2/820a82d97b279e0458f6bff0ff075dbf66e54d1532db27daa24ac091e37e7f11/work"
},
"Name": "overlay2"
},
"RootFS": {
"Type": "layers",
"Layers": [
"sha256:687d50f2f6a697da02e05f2b2b9cb05c1d551f37c404ebe55fdec44b0ae8aa5c",
"sha256:18f2a2564e3c26d52e87bdbf9da106d231de1ed2ab40b9d5383683b0830d592e",
"sha256:1466145115424be3510e46c06b4f45aaa0231221d2406d2d75f3758acff15f6a",
"sha256:a322d6418c5a2994181a1582338c05bdcb82d12b930ac084c908d24e5c6e2c8e",
"sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
"sha256:51f6a7ee720772c1dd95faf1a772aa76d06bfa83855a021675b3463089e3a115"
]
},
"Metadata": {
"LastTagTime": "2025-02-13T15:52:54.27097732+08:00"
}
}
更多版本
docker.io/zabbix/zabbix-web-nginx-mysql:alpine-7.0-latest
docker.io/zabbix/zabbix-web-nginx-mysql:trunk-alpine
docker.io/zabbix/zabbix-web-nginx-mysql:alpine-7.0.2
docker.io/zabbix/zabbix-web-nginx-mysql:alpine-7.2-latest
docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-7.2-latest
docker.io/zabbix/zabbix-web-nginx-mysql:ubuntu-5.0-latest
docker.io/zabbix/zabbix-web-nginx-mysql:alpine-5.4.9
docker.io/zabbix/zabbix-web-nginx-mysql:alpine-4.4.10