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

134 lines
5.5 KiB
Docker
Raw Normal View History

FROM ubuntu:bionic
2018-02-18 21:42:44 +01:00
2020-04-28 20:22:44 +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"
2016-08-03 10:09:49 +02:00
2018-02-18 21:42:44 +01:00
STOPSIGNAL SIGTERM
2019-05-30 20:21:16 +02:00
RUN set -eux && \
2020-12-30 22:57:53 +01:00
echo "#!/bin/sh\nexit 101" > /usr/sbin/policy-rc.d && \
groupadd --system --gid 1995 zabbix && \
useradd \
--system --comment "Zabbix monitoring system" \
-g zabbix -G root \
2020-04-28 20:22:44 +02:00
--uid 1997 \
--shell /sbin/nologin \
--home-dir /var/lib/zabbix/ \
2016-08-03 10:09:49 +02:00
zabbix && \
mkdir -p /etc/zabbix && \
mkdir -p /etc/zabbix/web && \
2020-04-28 21:16:47 +02:00
mkdir -p /var/lib/php/session && \
2020-04-28 20:22:44 +02:00
apt-get -y update && \
2020-04-28 21:16:47 +02:00
DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \
gpg \
dirmngr \
gpg-agent \
ca-certificates && \
2019-05-29 11:19:18 +02:00
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; \
2018-02-18 02:10:43 +01:00
DISTRIB_CODENAME=$(/bin/bash -c 'source /etc/lsb-release && echo $DISTRIB_CODENAME') && \
2019-05-30 20:21:16 +02:00
echo "deb https://nginx.org/packages/ubuntu/ $DISTRIB_CODENAME nginx" >> /etc/apt/sources.list.d/nginx.list && \
2020-04-28 20:22:44 +02:00
apt-get -y update && \
DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \
curl \
2016-08-03 10:09:49 +02:00
mysql-client \
nginx \
2020-04-28 21:35:51 +02:00
locales \
php7.2-bcmath \
php7.2-fpm \
php7.2-gd \
php7.2-json \
php7.2-ldap \
php7.2-mbstring \
php7.2-mysql \
php7.2-xml \
supervisor && \
rm -f /etc/nginx/conf.d/*.conf && \
2020-04-28 20:22:44 +02:00
rm -rf /var/cache/nginx/ && \
2020-04-28 21:16:47 +02:00
rm -f /etc/php/7.2/fpm/pool.d/www.conf && \
2020-05-01 20:15:15 +02:00
ln -sf /dev/fd/2 /var/log/nginx/error.log && \
2020-04-28 23:46:13 +02:00
DEBIAN_FRONTEND=noninteractive apt-get -y purge gpg dirmngr gpg-agent && \
2020-04-28 20:22:44 +02:00
apt-get -y autoremove && \
apt-get -y clean && \
2016-08-03 10:09:49 +02:00
rm -rf /var/lib/apt/lists/*
ARG MAJOR_VERSION=master
ARG ZBX_VERSION=${MAJOR_VERSION}
2019-05-10 16:11:07 +02:00
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2016-08-03 10:09:49 +02:00
2020-04-28 20:22:44 +02:00
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/"]
2018-02-18 21:42:44 +01:00
2019-05-30 20:21:16 +02:00
RUN set -eux && \
2020-04-28 20:22:44 +02:00
apt-get -y update && \
DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \
2018-02-18 21:42:44 +01:00
gettext \
2020-04-28 21:35:51 +02:00
git && \
2016-08-03 10:09:49 +02:00
cd /usr/share/ && \
2019-05-10 16:11:07 +02:00
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
mkdir /usr/share/zabbix/ && \
cp -R /usr/share/zabbix-${ZBX_VERSION}/frontends/php/* /usr/share/zabbix/ && \
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
2016-08-03 10:09:49 +02:00
cd /usr/share/zabbix/ && \
./locale/make_mo.sh && \
2021-06-07 18:20:27 +02:00
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 && \
2020-04-28 20:22:44 +02:00
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" && \
2018-02-18 21:42:44 +01:00
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 && \
2018-02-18 21:42:44 +01:00
find /usr/share/zabbix/locale -name '*.po' | xargs rm -f && \
find /usr/share/zabbix/locale -name '*.sh' | xargs rm -f && \
2020-05-01 18:14:42 +02:00
chown --quiet -R zabbix:root /etc/zabbix/ && \
chgrp -R 0 /etc/zabbix/ && \
chmod -R g=u /etc/zabbix/ && \
2020-04-28 21:16:47 +02:00
chown --quiet -R zabbix:root /etc/nginx/ /etc/php/7.2/fpm/php-fpm.conf /etc/php/7.2/fpm/pool.d/ && \
chgrp -R 0 /etc/nginx/ /etc/php/7.2/fpm/php-fpm.conf /etc/php/7.2/fpm/pool.d/ && \
chmod -R g=u /etc/nginx/ /etc/php/7.2/fpm/php-fpm.conf /etc/php/7.2/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/ && \
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 && \
2020-04-28 20:22:44 +02:00
DEBIAN_FRONTEND=noninteractive apt-get -y purge \
2018-02-18 21:42:44 +01:00
gettext \
2020-04-28 21:35:51 +02:00
git && \
2020-04-28 20:22:44 +02:00
apt-get -y autoremove && \
apt-get -y clean && \
2019-05-10 16:11:07 +02:00
rm -rf /var/lib/apt/lists/*
2016-08-03 10:09:49 +02:00
2020-04-28 20:22:44 +02:00
EXPOSE 8080/TCP 8443/TCP
2016-08-03 10:09:49 +02:00
WORKDIR /usr/share/zabbix
2018-02-18 21:42:44 +01:00
COPY ["docker-entrypoint.sh", "/usr/bin/"]
2016-08-03 10:09:49 +02:00
2020-04-28 21:16:47 +02:00
USER 1997
2018-02-18 21:42:44 +01:00
ENTRYPOINT ["docker-entrypoint.sh"]