zabbix-docker/web-nginx-mysql/centos/Dockerfile

107 lines
4.4 KiB
Docker
Raw Normal View History

FROM centos:centos8
2020-04-26 18:45:42 +02:00
LABEL org.opencontainers.image.title="Zabbix web-interface (Nginx, MySQL)" \
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 MySQL database support" \
org.opencontainers.image.licenses="GPL v2.0"
2018-02-18 21:45:33 +01:00
STOPSIGNAL SIGTERM
2019-05-30 20:21:16 +02:00
RUN set -eux && \
groupadd --system --gid 1995 zabbix && \
useradd \
--system --comment "Zabbix monitoring system" \
2020-04-26 18:45:42 +02:00
-g zabbix -G root \
--uid 1997 \
--shell /sbin/nologin \
--home-dir /var/lib/zabbix/ \
2018-02-18 21:45:33 +01:00
zabbix && \
mkdir -p /etc/zabbix && \
mkdir -p /etc/zabbix/web && \
2020-09-11 08:49:29 +02:00
mkdir -p /etc/zabbix/web/certs && \
2020-04-27 23:31:42 +02:00
mkdir -p /var/lib/php/session && \
dnf --quiet makecache && \
dnf -y install epel-release && \
dnf -y install --setopt=install_weak_deps=False --best --setopt=tsflags=nodocs \
curl \
2020-09-08 13:25:38 +02:00
mysql \
2018-02-18 21:45:33 +01:00
nginx \
php-bcmath \
php-fpm \
php-gd \
php-ldap \
php-mbstring \
php-mysqlnd \
php-json \
2018-02-18 21:45:33 +01:00
php-xml \
supervisor && \
2020-04-26 18:45:42 +02:00
rm -f /etc/nginx/conf.d/*.conf && \
2020-04-26 20:36:05 +02:00
rm -f /etc/php-fpm.d/www.conf && \
dnf -y clean all && \
2020-04-26 18:45:42 +02:00
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
2020-04-26 18:45:42 +02:00
2020-04-27 17:08:26 +02:00
ARG MAJOR_VERSION=5.0
2021-01-25 14:20:31 +01:00
ARG ZBX_VERSION=${MAJOR_VERSION}.8
2020-04-26 18:45:42 +02:00
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
ENV TERM=xterm ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES}
LABEL 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}"
COPY ["conf/etc/", "/etc/"]
RUN set -eux && \
dnf --quiet makecache && \
dnf -y install --setopt=install_weak_deps=False --best --setopt=tsflags=nodocs \
glibc-locale-source && \
dnf -y install --setopt=install_weak_deps=False --best --setopt=tsflags=nodocs \
2020-04-26 18:45:42 +02:00
gettext \
git && \
cd /usr/share/ && \
2020-05-12 09:08:00 +02:00
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
2020-04-26 18:45:42 +02:00
mkdir /usr/share/zabbix/ && \
2020-05-03 22:44:19 +02:00
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
2020-04-26 18:45:42 +02:00
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
cd /usr/share/zabbix/ && \
rm -f conf/zabbix.conf.php && \
rm -f conf/maintenance.inc.php && \
2020-04-26 18:45:42 +02:00
rm -rf tests && \
./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/ && \
2020-04-27 23:31:42 +02:00
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 && \
dnf -y history undo `dnf -q history | sed -n 3p |column -t | cut -d' ' -f1` && \
2020-04-30 14:25:48 +02:00
dnf -y erase glibc-locale-source glibc-langpack-en && \
dnf -y clean all && \
2020-04-26 18:45:42 +02:00
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
2020-04-26 18:45:42 +02:00
EXPOSE 8080/TCP 8443/TCP
2018-02-18 21:45:33 +01:00
WORKDIR /usr/share/zabbix
COPY ["docker-entrypoint.sh", "/usr/bin/"]
2020-04-26 18:45:42 +02:00
USER 1997
2018-02-18 21:45:33 +01:00
ENTRYPOINT ["docker-entrypoint.sh"]