2018-07-19 12:37:11 +02:00
|
|
|
FROM ubuntu:bionic
|
2018-02-18 21:42:44 +01:00
|
|
|
|
2020-04-28 18:39:39 +02:00
|
|
|
LABEL org.opencontainers.image.title="Zabbix web-interface (Apache, 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 Apache2 web server with MySQL database support" \
|
|
|
|
org.opencontainers.image.licenses="GPL v2.0"
|
2018-02-18 21:42:44 +01:00
|
|
|
|
|
|
|
STOPSIGNAL SIGTERM
|
|
|
|
|
2019-05-30 20:21:16 +02:00
|
|
|
RUN set -eux && \
|
2016-08-03 10:09:49 +02:00
|
|
|
echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \
|
2020-04-28 18:39:39 +02:00
|
|
|
addgroup --system --gid 1995 --quiet zabbix && \
|
2016-08-03 10:09:49 +02:00
|
|
|
adduser --quiet \
|
|
|
|
--system --disabled-login \
|
2020-04-28 18:39:39 +02:00
|
|
|
--ingroup zabbix --ingroup root \
|
|
|
|
--uid 1997 \
|
2016-08-03 10:09:49 +02:00
|
|
|
--home /var/lib/zabbix/ \
|
|
|
|
zabbix && \
|
|
|
|
mkdir -p /etc/zabbix && \
|
|
|
|
mkdir -p /etc/zabbix/web && \
|
2020-04-28 18:39:39 +02:00
|
|
|
apt-get -y update && \
|
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \
|
2016-08-03 10:09:49 +02:00
|
|
|
apache2 \
|
2018-07-06 08:54:10 +02:00
|
|
|
curl \
|
2018-07-19 12:37:11 +02:00
|
|
|
libapache2-mod-php \
|
2020-04-28 18:39:39 +02:00
|
|
|
ca-certificates \
|
2018-02-18 21:42:44 +01:00
|
|
|
mysql-client \
|
2020-04-28 21:35:51 +02:00
|
|
|
locales \
|
2018-07-19 12:37:11 +02:00
|
|
|
php7.2-bcmath \
|
|
|
|
php7.2-gd \
|
|
|
|
php7.2-json \
|
|
|
|
php7.2-ldap \
|
|
|
|
php7.2-mbstring \
|
|
|
|
php7.2-mysql \
|
2019-05-29 12:24:06 +02:00
|
|
|
php7.2-xml && \
|
2020-04-28 18:39:39 +02:00
|
|
|
rm -f /etc/apache2/sites-available/* && \
|
2020-04-28 20:22:44 +02:00
|
|
|
rm -f /etc/apache2/sites-enabled/* && \
|
2020-04-28 18:39:39 +02:00
|
|
|
/usr/sbin/a2enmod ssl && \
|
|
|
|
sed -ri \
|
|
|
|
-e 's!^(\s*CustomLog)\s+\S+!\1 /proc/self/fd/1!g' \
|
|
|
|
-e 's!^(\s*ErrorLog)\s+\S+!\1 /proc/self/fd/2!g' \
|
|
|
|
"/etc/apache2/apache2.conf" && \
|
|
|
|
sed -ri \
|
|
|
|
-e 's!^(\s*CustomLog)\s+\S+!\1 /proc/self/fd/1!g' \
|
|
|
|
-e 's!^(\s*ErrorLog)\s+\S+!\1 /proc/self/fd/2!g' \
|
|
|
|
"/etc/apache2/conf-available/other-vhosts-access-log.conf" && \
|
|
|
|
sed -i 's/Listen 80/Listen 8080/g' /etc/apache2/ports.conf && \
|
|
|
|
sed -i 's/Listen 443/Listen 8443/g' /etc/apache2/ports.conf && \
|
|
|
|
sed -i 's|/var/run/apache2$SUFFIX|/tmp|g' /etc/apache2/envvars && \
|
|
|
|
rm -f /var/run/apache2/apache2.pid && \
|
|
|
|
apt-get -y autoremove && \
|
|
|
|
apt-get -y clean && \
|
2016-08-03 10:09:49 +02:00
|
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
2020-04-28 18:41:49 +02:00
|
|
|
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 18:39:39 +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 18:39:39 +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/ && \
|
|
|
|
rm -f conf/zabbix.conf.php && \
|
|
|
|
rm -rf tests && \
|
2018-05-31 09:50:32 +02:00
|
|
|
./locale/make_mo.sh && \
|
2020-04-28 18:39:39 +02:00
|
|
|
ln -s "/etc/zabbix/web/zabbix.conf.php" "/usr/share/zabbix/conf/zabbix.conf.php" && \
|
|
|
|
./locale/make_mo.sh && \
|
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' && \
|
2018-05-31 09:50:32 +02:00
|
|
|
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:06:35 +02:00
|
|
|
chown --quiet -R zabbix:root /etc/zabbix/ && \
|
|
|
|
chgrp -R 0 /etc/zabbix/ && \
|
|
|
|
chmod -R g=u /etc/zabbix/ && \
|
2020-04-28 18:39:39 +02:00
|
|
|
chown --quiet -R zabbix:root /etc/apache2/ /etc/php/7.2/ && \
|
|
|
|
chgrp -R 0 /etc/apache2/ /etc/php/7.2/ && \
|
|
|
|
chmod -R g=u /etc/apache2/ /etc/php/7.2/ && \
|
|
|
|
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 18:39:39 +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 18:39:39 +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 18:39:39 +02:00
|
|
|
USER 1997
|
|
|
|
|
2018-02-18 21:42:44 +01:00
|
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|
2020-04-28 18:39:39 +02:00
|
|
|
|
2020-04-28 20:22:44 +02:00
|
|
|
CMD ["/usr/sbin/apache2ctl", "-D", "FOREGROUND"]
|