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

111 lines
4.1 KiB
Docker
Raw Normal View History

# syntax=docker/dockerfile:1
2022-07-05 14:46:20 +02:00
ARG MAJOR_VERSION=6.4
2024-01-29 12:58:57 +01:00
ARG ZBX_VERSION=${MAJOR_VERSION}.11
ARG BUILD_BASE_IMAGE=zabbix-build-pgsql:alpine-${ZBX_VERSION}
2024-02-13 17:07:53 +01:00
FROM ${BUILD_BASE_IMAGE} AS builder
2022-11-23 11:05:59 +01:00
FROM alpine:3.17
2018-02-18 21:42:44 +01:00
ARG MAJOR_VERSION
ARG ZBX_VERSION
2021-10-16 17:49:19 +02:00
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2021-10-16 17:49:19 +02:00
ENV TERM=xterm \
ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES}
2021-10-16 17:49:19 +02:00
LABEL org.opencontainers.image.authors="Alexey Pustovalov <alexey.pustovalov@zabbix.com>" \
org.opencontainers.image.description="Zabbix web-interface based on Nginx web server with PostgreSQL database support" \
org.opencontainers.image.documentation="https://www.zabbix.com/documentation/${MAJOR_VERSION}/manual/installation/containers" \
2021-10-16 17:49:19 +02:00
org.opencontainers.image.licenses="GPL v2.0" \
org.opencontainers.image.source="${ZBX_SOURCES}" \
org.opencontainers.image.title="Zabbix web-interface (Nginx, PostgreSQL)" \
org.opencontainers.image.url="https://zabbix.com/" \
org.opencontainers.image.vendor="Zabbix LLC" \
org.opencontainers.image.version="${ZBX_VERSION}"
2018-02-18 21:42:44 +01:00
STOPSIGNAL SIGTERM
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/ui", "/usr/share/zabbix"]
COPY ["conf/etc/", "/etc/"]
2019-05-30 20:21:16 +02:00
RUN set -eux && \
2021-10-16 17:49:19 +02:00
INSTALL_PKGS="bash \
curl \
2016-08-03 10:09:49 +02:00
nginx \
php81-bcmath \
php81-ctype \
php81-fpm \
php81-gd \
php81-gettext \
php81-json \
php81-ldap \
php81-mbstring \
php81-pgsql \
php81-session \
php81-simplexml \
php81-sockets \
php81-fileinfo \
php81-xmlreader \
php81-xmlwriter \
php81-openssl \
2018-02-18 21:42:44 +01:00
postgresql-client \
2021-10-16 17:49:19 +02:00
supervisor" && \
apk add \
--no-cache \
--clean-protected \
${INSTALL_PKGS} && \
apk add \
--clean-protected \
--no-cache \
--no-scripts \
apache2-ssl && \
addgroup \
--system \
--gid 1995 \
zabbix && \
adduser \
--system \
--gecos "Zabbix monitoring system" \
--disabled-password \
--uid 1997 \
--ingroup zabbix \
--shell /sbin/nologin \
--home /var/lib/zabbix/ \
zabbix && \
mkdir -p /etc/zabbix && \
mkdir -p /etc/zabbix/web && \
mkdir -p /etc/zabbix/web/certs && \
mkdir -p /var/lib/php/session && \
rm -rf /etc/php81/php-fpm.d/www.conf && \
rm -f /etc/nginx/http.d/*.conf && \
ln -sf /dev/stdout /var/log/nginx/access.log && \
ln -sf /dev/stderr /var/log/nginx/error.log && \
2016-08-03 10:09:49 +02:00
cd /usr/share/zabbix/ && \
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 && \
2021-10-14 23:27:40 +02:00
find /usr/share/zabbix/locale -name '*.po' | xargs rm -f && \
find /usr/share/zabbix/locale -name '*.sh' | xargs rm -f && \
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/ && \
chown --quiet -R zabbix:root /etc/nginx/ /etc/php81/php-fpm.d/ /etc/php81/php-fpm.conf && \
chgrp -R 0 /etc/nginx/ /etc/php81/php-fpm.d/ /etc/php81/php-fpm.conf && \
chmod -R g=u /etc/nginx/ /etc/php81/php-fpm.d/ /etc/php81/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/
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"]