mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-11-23 16:23:56 +01:00
108 lines
4.2 KiB
Docker
108 lines
4.2 KiB
Docker
# syntax=docker/dockerfile:1
|
|
ARG MAJOR_VERSION=6.0
|
|
ARG ZBX_VERSION=${MAJOR_VERSION}
|
|
ARG BUILD_BASE_IMAGE=zabbix-build-pgsql:ol-${ZBX_VERSION}
|
|
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
|
|
|
|
FROM ${BUILD_BASE_IMAGE} as builder
|
|
|
|
FROM oraclelinux:8-slim
|
|
|
|
ARG MAJOR_VERSION
|
|
ARG ZBX_VERSION
|
|
ARG ZBX_SOURCES
|
|
|
|
ENV TERM=xterm ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES}
|
|
|
|
LABEL org.opencontainers.image.title="Zabbix web-interface (Nginx, PostgreSQL)" \
|
|
org.opencontainers.image.authors="Alexey Pustovalov <alexey.pustovalov@zabbix.com>" \
|
|
org.opencontainers.image.vendor="Zabbix LLC" \
|
|
org.opencontainers.image.url="https://zabbix.com/" \
|
|
org.opencontainers.image.description="Zabbix web-interface based on Nginx web server with PostgreSQL database support" \
|
|
org.opencontainers.image.licenses="GPL v2.0" \
|
|
org.opencontainers.image.documentation="https://www.zabbix.com/documentation/${MAJOR_VERSION}/manual/installation/containers" \
|
|
org.opencontainers.image.version="${ZBX_VERSION}" \
|
|
org.opencontainers.image.source="${ZBX_SOURCES}"
|
|
|
|
STOPSIGNAL SIGTERM
|
|
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/ui", "/usr/share/zabbix"]
|
|
COPY ["conf/etc/", "/etc/"]
|
|
COPY ["conf/etc/yum.repos.d/oracle-epel-ol8.repo", "/etc/yum.repos.d/oracle-epel-ol8.repo"]
|
|
|
|
RUN set -eux && \
|
|
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 && \
|
|
microdnf -y module enable php:7.4 && \
|
|
INSTALL_PKGS="supervisor \
|
|
curl \
|
|
nginx \
|
|
postgresql \
|
|
php-bcmath \
|
|
php-fpm \
|
|
php-gd \
|
|
php-ldap \
|
|
php-mbstring \
|
|
php-pgsql \
|
|
php-json \
|
|
findutils \
|
|
glibc-locale-source \
|
|
php-xml" && \
|
|
microdnf -y install \
|
|
--disablerepo="*" \
|
|
--enablerepo="ol8_baseos_latest" \
|
|
--enablerepo="ol8_appstream" \
|
|
--enablerepo="ol8_developer_EPEL" \
|
|
--setopt=install_weak_deps=0 \
|
|
--best \
|
|
--nodocs ${INSTALL_PKGS} && \
|
|
rm -f /etc/nginx/conf.d/*.conf && \
|
|
rm -f /etc/php-fpm.d/www.conf && \
|
|
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 && \
|
|
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" && \
|
|
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 "{}" && localedef -c -i {} -f UTF-8 {}.UTF-8 2>/dev/null' && \
|
|
chown --quiet -R zabbix:root /etc/zabbix/ /usr/share/zabbix/modules/ && \
|
|
chgrp -R 0 /etc/zabbix/ /usr/share/zabbix/modules/ && \
|
|
chmod -R g=u /etc/zabbix/ /usr/share/zabbix/modules/ && \
|
|
chown --quiet -R zabbix:root /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf && \
|
|
chgrp -R 0 /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf && \
|
|
chmod -R g=u /etc/nginx/ /etc/php-fpm.d/ /etc/php-fpm.conf && \
|
|
chown --quiet -R zabbix:root /var/lib/php/session/ && \
|
|
chgrp -R 0 /var/lib/php/session/ && \
|
|
chmod -R g=u /var/lib/php/session/ && \
|
|
chown --quiet -R zabbix:root /usr/share/zabbix/include/defines.inc.php && \
|
|
chgrp -R 0 /usr/share/zabbix/include/defines.inc.php && \
|
|
chmod -R g=u /usr/share/zabbix/include/defines.inc.php && \
|
|
microdnf -y remove \
|
|
findutils \
|
|
glibc-locale-source && \
|
|
microdnf -y clean all && \
|
|
rm -rf /var/cache/yum /var/lib/yum/yumdb/* /usr/lib/udev/hwdb.d/* && \
|
|
rm -rf /var/cache/dnf /etc/udev/hwdb.bin /root/.pki
|
|
|
|
EXPOSE 8080/TCP 8443/TCP
|
|
|
|
WORKDIR /usr/share/zabbix
|
|
|
|
COPY ["docker-entrypoint.sh", "/usr/bin/"]
|
|
|
|
USER 1997
|
|
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|