mirror of
https://mirror.skon.top/github.com/zabbix/zabbix-docker
synced 2026-05-01 06:19:19 +08:00
156 lines
5.2 KiB
Docker
156 lines
5.2 KiB
Docker
# syntax=docker/dockerfile:1
|
|
ARG OS_BASE_IMAGE=quay.io/centos/centos:stream10-minimal
|
|
ARG MAJOR_VERSION=7.4
|
|
ARG ZBX_VERSION=${MAJOR_VERSION}.8
|
|
ARG BUILD_BASE_IMAGE=zabbix-build-pgsql:centos-${ZBX_VERSION}
|
|
|
|
FROM ${BUILD_BASE_IMAGE} AS builder
|
|
FROM builder AS clean_builder
|
|
|
|
ARG ZBX_VERSION
|
|
|
|
RUN set -eux && \
|
|
rm -rf \
|
|
"/tmp/zabbix-${ZBX_VERSION}/ui/tests" \
|
|
"/tmp/zabbix-${ZBX_VERSION}/ui/conf/zabbix.conf.php" \
|
|
"/tmp/zabbix-${ZBX_VERSION}/ui/conf/zabbix.conf.php.example" \
|
|
"/tmp/zabbix-${ZBX_VERSION}/ui/conf/maintenance.inc.php" && \
|
|
find "/tmp/zabbix-${ZBX_VERSION}/ui/locale" -name '*.po' -delete && \
|
|
find "/tmp/zabbix-${ZBX_VERSION}/ui/locale" -name '*.sh' -delete
|
|
|
|
FROM ${OS_BASE_IMAGE}
|
|
|
|
ARG MAJOR_VERSION
|
|
ARG ZBX_VERSION
|
|
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
|
|
|
|
ENV TERM=xterm \
|
|
ZBX_VERSION=${ZBX_VERSION} \
|
|
ZBX_SOURCES=${ZBX_SOURCES} \
|
|
ZABBIX_CONF_DIR=/etc/zabbix \
|
|
ZABBIX_USER_HOME_DIR=/var/lib/zabbix \
|
|
ZABBIX_WWW_ROOT=/usr/share/zabbix
|
|
|
|
LABEL org.opencontainers.image.authors="Alexey Pustovalov <alexey.pustovalov@zabbix.com>" \
|
|
org.opencontainers.image.description="Zabbix web-interface based on Apache2 web server with PostgreSQL database support" \
|
|
org.opencontainers.image.documentation="https://www.zabbix.com/documentation/${MAJOR_VERSION}/manual/installation/containers" \
|
|
org.opencontainers.image.licenses="AGPL v3.0" \
|
|
org.opencontainers.image.source="${ZBX_SOURCES}" \
|
|
org.opencontainers.image.title="Zabbix web-interface (Apache, PostgreSQL)" \
|
|
org.opencontainers.image.url="https://zabbix.com/" \
|
|
org.opencontainers.image.vendor="Zabbix SIA" \
|
|
org.opencontainers.image.version="${ZBX_VERSION}"
|
|
|
|
STOPSIGNAL SIGTERM
|
|
|
|
COPY --from=clean_builder /tmp/zabbix-${ZBX_VERSION}/ui ${ZABBIX_WWW_ROOT}/
|
|
COPY conf/etc/ /etc/
|
|
|
|
RUN --mount=type=tmpfs,target=/var/lib/dnf/ \
|
|
--mount=type=tmpfs,target=/var/cache/yum/ \
|
|
set -eux && \
|
|
INSTALL_PKGS="bash \
|
|
curl-minimal \
|
|
httpd \
|
|
mod_ssl \
|
|
php \
|
|
php-curl \
|
|
php-fpm \
|
|
php-bcmath \
|
|
php-gd \
|
|
php-ldap \
|
|
php-mbstring \
|
|
php-pgsql \
|
|
php-json \
|
|
php-xml \
|
|
postgresql18 \
|
|
findutils \
|
|
glibc-locale-source \
|
|
shadow-utils \
|
|
gzip \
|
|
supervisor" && \
|
|
microdnf -y install \
|
|
--disablerepo="*" \
|
|
--enablerepo="extras-common" \
|
|
--setopt=install_weak_deps=0 \
|
|
--setopt=keepcache=0 \
|
|
--best \
|
|
--nodocs \
|
|
epel-release && \
|
|
microdnf -y install \
|
|
--disablerepo="*" \
|
|
--enablerepo="baseos" \
|
|
--enablerepo="appstream" \
|
|
--enablerepo="epel" \
|
|
--setopt=install_weak_deps=0 \
|
|
--setopt=keepcache=0 \
|
|
--best \
|
|
--nodocs \
|
|
${INSTALL_PKGS} && \
|
|
microdnf -y reinstall \
|
|
--enablerepo="baseos" \
|
|
--setopt=install_weak_deps=0 \
|
|
--setopt=keepcache=0 \
|
|
--best \
|
|
--setopt=tsflags=nodocs \
|
|
tzdata && \
|
|
groupadd \
|
|
--system \
|
|
--gid 1995 \
|
|
zabbix && \
|
|
useradd \
|
|
--system \
|
|
--comment "Zabbix monitoring system" \
|
|
-g zabbix \
|
|
--uid 1997 \
|
|
--shell /sbin/nologin \
|
|
--home-dir ${ZABBIX_USER_HOME_DIR} \
|
|
zabbix && \
|
|
mkdir -p ${ZABBIX_CONF_DIR} \
|
|
${ZABBIX_CONF_DIR}/web \
|
|
${ZABBIX_CONF_DIR}/web/certs \
|
|
${ZABBIX_USER_HOME_DIR}/enc \
|
|
${ZABBIX_USER_HOME_DIR}/enc_internal \
|
|
/var/lib/php/session && \
|
|
rm -rf /etc/httpd/conf.d/default.conf \
|
|
/etc/httpd/conf.d/ssl.conf \
|
|
/etc/httpd/conf.d/autoindex.conf \
|
|
/etc/httpd/conf.d/php.conf \
|
|
/etc/httpd/conf.d/userdir.conf \
|
|
/etc/httpd/conf.d/welcome.conf \
|
|
/etc/php-fpm.d/www.conf && \
|
|
ln -sf "${ZABBIX_CONF_DIR}/web/zabbix.conf.php" "${ZABBIX_WWW_ROOT}/conf/zabbix.conf.php" && \
|
|
ln -sf "${ZABBIX_CONF_DIR}/web/maintenance.inc.php" "${ZABBIX_WWW_ROOT}/conf/maintenance.inc.php" && \
|
|
awk "/display/ && /true/ {gsub(/^[ \t]+|[ \t]+$/, \"\", \$0); print \$0}" "${ZABBIX_WWW_ROOT}/include/locales.inc.php" | \
|
|
cut -d"'" -f 2 | sort -u | \
|
|
xargs -r -I '{}' bash -c 'echo "{}" && localedef -c -i {} -f UTF-8 {}.UTF-8 2>/dev/null' && \
|
|
FIX_PERM_LIST="\
|
|
${ZABBIX_CONF_DIR}/ \
|
|
${ZABBIX_WWW_ROOT}/include/defines.inc.php \
|
|
${ZABBIX_WWW_ROOT}/modules/ \
|
|
${ZABBIX_USER_HOME_DIR}/ \
|
|
/etc/httpd/ \
|
|
/etc/php-fpm.d/ \
|
|
/etc/php-fpm.conf \
|
|
/run/httpd/ \
|
|
/var/lib/php/session/" && \
|
|
chown --quiet -R zabbix:0 ${FIX_PERM_LIST} && \
|
|
chmod -R g=u ${FIX_PERM_LIST} && \
|
|
microdnf -y remove \
|
|
findutils \
|
|
glibc-locale-source \
|
|
gzip
|
|
|
|
HEALTHCHECK --interval=1m30s --timeout=3s --retries=3 --start-period=40s --start-interval=5s \
|
|
CMD curl -f http://localhost:8080/ping || exit 1
|
|
|
|
EXPOSE 8080/tcp 8443/tcp
|
|
|
|
WORKDIR ${ZABBIX_WWW_ROOT}
|
|
|
|
COPY docker-entrypoint.sh /usr/bin/
|
|
|
|
USER 1997
|
|
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|