zabbix-docker/web-nginx-pgsql/alpine/Dockerfile

107 lines
4.1 KiB
Docker
Raw Normal View History

FROM alpine:3.13
2018-02-18 21:42:44 +01:00
2020-04-25 21:34:09 +02:00
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" \
2020-04-25 21:34:09 +02:00
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 && \
addgroup --system --gid 1995 zabbix && \
adduser --system \
--gecos "Zabbix monitoring system" \
--disabled-password \
--uid 1997 \
--ingroup zabbix \
--shell /sbin/nologin \
--home /var/lib/zabbix/ \
2016-08-03 10:09:49 +02:00
zabbix && \
adduser zabbix root && \
2016-08-03 10:09:49 +02:00
mkdir -p /etc/zabbix && \
mkdir -p /etc/zabbix/web && \
2020-04-27 23:31:42 +02:00
mkdir -p /var/lib/php/session && \
2020-04-25 21:34:09 +02:00
apk add --clean-protected --no-cache \
2016-08-03 10:09:49 +02:00
bash \
curl \
2016-08-03 10:09:49 +02:00
nginx \
2018-05-11 22:00:31 +02:00
php7-bcmath \
php7-ctype \
php7-fpm \
php7-gd \
php7-gettext \
php7-json \
php7-ldap \
php7-mbstring \
php7-pgsql \
php7-session \
2018-05-24 09:31:46 +02:00
php7-simplexml \
2018-05-11 22:00:31 +02:00
php7-sockets \
php7-fileinfo \
2018-05-11 22:00:31 +02:00
php7-xmlreader \
php7-xmlwriter \
php7-openssl \
2018-02-18 21:42:44 +01:00
postgresql-client \
supervisor && \
2020-04-25 21:34:09 +02:00
rm -rf /etc/php7/php-fpm.d/www.conf && \
rm -f /etc/nginx/conf.d/*.conf && \
2020-05-01 18:06:35 +02:00
ln -sf /dev/fd/2 /var/lib/nginx/logs/error.log && \
2016-08-03 10:09:49 +02:00
rm -rf /var/cache/apk/*
2021-05-17 11:37:01 +02:00
ARG MAJOR_VERSION=6.0
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-25 21:34:09 +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-25 21:34:09 +02:00
apk add --no-cache --virtual build-dependencies \
2016-08-03 10:09:49 +02:00
coreutils \
gettext \
2019-05-10 16:11:07 +02:00
git && \
2016-08-03 10:09:49 +02:00
cd /usr/share/ && \
2021-05-17 12:04:07 +02:00
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
2019-05-10 16:11:07 +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/ && \
2019-05-10 16:11:07 +02:00
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-25 21:34:09 +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" && \
2020-05-01 18:33:55 +02:00
chown --quiet -R zabbix:root /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && \
chgrp -R 0 /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && \
chmod -R g=u /etc/zabbix/ /usr/share/zabbix/include/defines.inc.php /usr/share/zabbix/modules/ && \
2020-04-27 23:31:42 +02:00
chown --quiet -R zabbix:root /etc/nginx/ /etc/php7/php-fpm.d/ /etc/php7/php-fpm.conf && \
chgrp -R 0 /etc/nginx/ /etc/php7/php-fpm.d/ /etc/php7/php-fpm.conf && \
chmod -R g=u /etc/nginx/ /etc/php7/php-fpm.d/ /etc/php7/php-fpm.conf && \
2020-05-01 18:06:35 +02:00
chown --quiet -R zabbix:root /var/lib/php/session/ /var/lib/nginx/ && \
chgrp -R 0 /var/lib/php/session/ /var/lib/nginx/ && \
chmod -R g=u /var/lib/php/session/ /var/lib/nginx/ && \
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-25 21:34:09 +02:00
apk del --purge --no-network \
2016-08-03 10:09:49 +02:00
build-dependencies && \
2019-05-10 16:11:07 +02:00
rm -rf /var/cache/apk/*
2016-08-03 10:09:49 +02:00
2020-04-25 21:34:09 +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-25 21:34:09 +02:00
USER 1997
2018-02-18 21:42:44 +01:00
ENTRYPOINT ["docker-entrypoint.sh"]