|
|
|
@ -1,42 +1,31 @@
|
|
|
|
|
FROM ubuntu:bionic
|
|
|
|
|
LABEL maintainer="Alexey Pustovalov <alexey.pustovalov@zabbix.com>"
|
|
|
|
|
|
|
|
|
|
ARG BUILD_DATE
|
|
|
|
|
ARG VCS_REF
|
|
|
|
|
|
|
|
|
|
ARG APT_FLAGS_COMMON="-y"
|
|
|
|
|
ARG APT_FLAGS_PERSISTENT="${APT_FLAGS_COMMON} --no-install-recommends"
|
|
|
|
|
ARG APT_FLAGS_DEV="${APT_FLAGS_COMMON} --no-install-recommends"
|
|
|
|
|
ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8 TERM=xterm \
|
|
|
|
|
ZBX_TYPE=frontend ZBX_DB_TYPE=postgresql ZBX_OPT_TYPE=nginx
|
|
|
|
|
|
|
|
|
|
LABEL org.label-schema.name="zabbix-web-${ZBX_OPT_TYPE}-${ZBX_DB_TYPE}-ubuntu" \
|
|
|
|
|
org.label-schema.vendor="Zabbix LLC" \
|
|
|
|
|
org.label-schema.url="https://zabbix.com/" \
|
|
|
|
|
org.label-schema.description="Zabbix web-interface based on Nginx web server with PostgreSQL database support" \
|
|
|
|
|
org.label-schema.vcs-ref="${VCS_REF}" \
|
|
|
|
|
org.label-schema.build-date="${BUILD_DATE}" \
|
|
|
|
|
org.label-schema.schema-version="1.0" \
|
|
|
|
|
org.label-schema.license="GPL v2.0"
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
|
|
STOPSIGNAL SIGTERM
|
|
|
|
|
|
|
|
|
|
RUN set -eux && \
|
|
|
|
|
apt-get ${APT_FLAGS_COMMON} update && \
|
|
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get ${APT_FLAGS_PERSISTENT} install locales gnupg2 ca-certificates && \
|
|
|
|
|
locale-gen $LC_ALL && \
|
|
|
|
|
echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \
|
|
|
|
|
addgroup --system --quiet zabbix && \
|
|
|
|
|
addgroup --system --gid 1995 --quiet zabbix && \
|
|
|
|
|
adduser --quiet \
|
|
|
|
|
--system --disabled-login \
|
|
|
|
|
--ingroup zabbix \
|
|
|
|
|
--ingroup zabbix --ingroup root \
|
|
|
|
|
--uid 1997 \
|
|
|
|
|
--home /var/lib/zabbix/ \
|
|
|
|
|
--no-create-home \
|
|
|
|
|
zabbix && \
|
|
|
|
|
mkdir -p /etc/zabbix && \
|
|
|
|
|
mkdir -p /etc/zabbix/web && \
|
|
|
|
|
chown --quiet -R zabbix:root /etc/zabbix && \
|
|
|
|
|
apt-get ${APT_FLAGS_COMMON} update && \
|
|
|
|
|
mkdir -p /var/lib/php/session && \
|
|
|
|
|
apt-get -y update && \
|
|
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \
|
|
|
|
|
gpg \
|
|
|
|
|
dirmngr \
|
|
|
|
|
gpg-agent \
|
|
|
|
|
ca-certificates && \
|
|
|
|
|
NGINX_GPGKEY=573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62; \
|
|
|
|
|
found=''; \
|
|
|
|
|
for server in \
|
|
|
|
@ -51,8 +40,8 @@ RUN set -eux && \
|
|
|
|
|
test -z "$found" && echo >&2 "error: failed to fetch GPG key $NGINX_GPGKEY" && exit 1; \
|
|
|
|
|
DISTRIB_CODENAME=$(/bin/bash -c 'source /etc/lsb-release && echo $DISTRIB_CODENAME') && \
|
|
|
|
|
echo "deb https://nginx.org/packages/ubuntu/ $DISTRIB_CODENAME nginx" >> /etc/apt/sources.list.d/nginx.list && \
|
|
|
|
|
apt-get ${APT_FLAGS_COMMON} update && \
|
|
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get ${APT_FLAGS_PERSISTENT} install \
|
|
|
|
|
apt-get -y update && \
|
|
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \
|
|
|
|
|
curl \
|
|
|
|
|
nginx \
|
|
|
|
|
php7.2-bcmath \
|
|
|
|
@ -99,6 +88,8 @@ RUN set -eux && \
|
|
|
|
|
rm -f conf/zabbix.conf.php && \
|
|
|
|
|
rm -rf tests && \
|
|
|
|
|
./locale/make_mo.sh && \
|
|
|
|
|
ln -s "/etc/zabbix/web/zabbix.conf.php" "/usr/share/zabbix/conf/zabbix.conf.php" && \
|
|
|
|
|
./locale/make_mo.sh && \
|
|
|
|
|
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' | \
|
|
|
|
@ -107,25 +98,31 @@ RUN set -eux && \
|
|
|
|
|
dpkg-reconfigure locales && \
|
|
|
|
|
find /usr/share/zabbix/locale -name '*.po' | xargs rm -f && \
|
|
|
|
|
find /usr/share/zabbix/locale -name '*.sh' | xargs rm -f && \
|
|
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get ${APT_FLAGS_COMMON} purge \
|
|
|
|
|
chown --quiet -R zabbix:root /etc/zabbix/ /usr/share/zabbix/conf/ && \
|
|
|
|
|
chgrp -R 0 /etc/zabbix/ /usr/share/zabbix/conf/ && \
|
|
|
|
|
chmod -R g=u /etc/zabbix/ /usr/share/zabbix/conf/ && \
|
|
|
|
|
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/ && \
|
|
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get -y purge \
|
|
|
|
|
gettext \
|
|
|
|
|
git && \
|
|
|
|
|
apt-get ${APT_FLAGS_COMMON} autoremove && \
|
|
|
|
|
apt-get ${APT_FLAGS_COMMON} clean && \
|
|
|
|
|
git \
|
|
|
|
|
locales && \
|
|
|
|
|
apt-get -y autoremove && \
|
|
|
|
|
apt-get -y clean && \
|
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
|
|
EXPOSE 80/TCP 443/TCP
|
|
|
|
|
EXPOSE 8080/TCP 8443/TCP
|
|
|
|
|
|
|
|
|
|
WORKDIR /usr/share/zabbix
|
|
|
|
|
|
|
|
|
|
VOLUME ["/etc/ssl/nginx"]
|
|
|
|
|
|
|
|
|
|
COPY ["conf/etc/supervisor/", "/etc/supervisor/"]
|
|
|
|
|
COPY ["conf/etc/zabbix/nginx.conf", "/etc/zabbix/"]
|
|
|
|
|
COPY ["conf/etc/zabbix/nginx_ssl.conf", "/etc/zabbix/"]
|
|
|
|
|
COPY ["conf/etc/zabbix/web/zabbix.conf.php", "/etc/zabbix/web/"]
|
|
|
|
|
COPY ["conf/etc/nginx/nginx.conf", "/etc/nginx/"]
|
|
|
|
|
COPY ["conf/etc/php/7.2/fpm/conf.d/99-zabbix.ini", "/etc/php/7.2/fpm/conf.d/"]
|
|
|
|
|
COPY ["docker-entrypoint.sh", "/usr/bin/"]
|
|
|
|
|
|
|
|
|
|
USER 1997
|
|
|
|
|
|
|
|
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|
|
|
|
|