zabbix-docker/Dockerfiles/server-pgsql/centos/Dockerfile

141 lines
5.3 KiB
Docker
Raw Normal View History

2021-10-06 22:39:49 +02:00
# syntax=docker/dockerfile:1
2022-07-05 14:46:20 +02:00
ARG MAJOR_VERSION=6.4
2024-05-21 13:15:08 +02:00
ARG ZBX_VERSION=${MAJOR_VERSION}.15
2021-10-06 22:39:49 +02:00
ARG BUILD_BASE_IMAGE=zabbix-build-pgsql:centos-${ZBX_VERSION}
2024-02-13 17:07:53 +01:00
FROM ${BUILD_BASE_IMAGE} AS builder
2021-10-06 22:39:49 +02:00
FROM quay.io/centos/centos:stream9-minimal
2021-10-06 22:39:49 +02: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-06 22:39:49 +02:00
2021-10-16 17:49:19 +02:00
ENV TERM=xterm \
ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES} \
MIBDIRS=/usr/share/snmp/mibs:/var/lib/zabbix/mibs MIBS=+ALL \
NMAP_PRIVILEGED=""
2018-05-26 12:58:52 +02:00
2021-10-16 17:49:19 +02:00
LABEL org.opencontainers.image.authors="Alexey Pustovalov <alexey.pustovalov@zabbix.com>" \
2020-04-26 18:45:42 +02:00
org.opencontainers.image.description="Zabbix server with PostgreSQL database support" \
2021-10-06 22:39:49 +02:00
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 server (PostgreSQL)" \
org.opencontainers.image.url="https://zabbix.com/" \
2024-05-21 12:45:53 +02:00
org.opencontainers.image.vendor="Zabbix SIA" \
2021-10-16 17:49:19 +02:00
org.opencontainers.image.version="${ZBX_VERSION}"
2020-04-28 18:39:39 +02:00
2020-04-26 18:45:42 +02:00
STOPSIGNAL SIGTERM
2020-04-28 18:39:39 +02:00
2021-10-06 22:39:49 +02:00
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/src/zabbix_server/zabbix_server", "/usr/sbin/zabbix_server"]
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/src/zabbix_get/zabbix_get", "/usr/bin/zabbix_get"]
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/src/zabbix_sender/zabbix_sender", "/usr/bin/zabbix_sender"]
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/conf/zabbix_server.conf", "/etc/zabbix/zabbix_server.conf"]
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/database/postgresql/create_server.sql.gz", "/usr/share/doc/zabbix-server-postgresql/create.sql.gz"]
2023-10-20 16:10:18 +02:00
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/database/postgresql/timescaledb/schema.sql", "/usr/share/doc/zabbix-server-postgresql/timescaledb.sql"]
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/database/postgresql/timescaledb/option-patches/with-compression/*.sql", "/usr/share/doc/zabbix-server-postgresql/option-patches/with-compression/"]
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/database/postgresql/timescaledb/option-patches/without-compression/*.sql", "/usr/share/doc/zabbix-server-postgresql/option-patches/without-compression/"]
2018-05-26 12:58:52 +02:00
RUN --mount=type=tmpfs,target=/var/lib/dnf/ \
set -eux && \
2021-10-06 22:39:49 +02:00
INSTALL_PKGS="fping \
2021-04-27 23:10:15 +02:00
file-libs \
2021-10-06 22:39:49 +02:00
tini \
traceroute \
nmap \
2020-04-26 18:45:42 +02:00
iputils \
traceroute \
2020-04-27 17:08:26 +02:00
libevent \
libssh \
libpsl \
libbrotli \
2020-04-26 18:45:42 +02:00
libxml2 \
net-snmp-libs \
OpenIPMI-libs \
openldap \
openssl-libs \
2022-01-22 13:44:37 +01:00
pcre2 \
2020-04-26 18:45:42 +02:00
postgresql \
postgresql-libs \
shadow-utils \
2020-10-06 12:11:53 +02:00
zlib \
gzip \
2021-10-06 22:39:49 +02:00
unixODBC" && \
microdnf -y install \
--disablerepo "*" \
--enablerepo "extras-common" \
--setopt=install_weak_deps=0 \
--setopt=keepcache=0 \
--best \
--nodocs epel-release && \
microdnf -y install \
--disablerepo "*" \
--enablerepo "baseos" \
--enablerepo "appstream" \
--enablerepo="epel" \
--setopt=install_weak_deps=0 \
--setopt=keepcache=0 \
--best \
--nodocs ${INSTALL_PKGS} && \
microdnf -y reinstall \
--enablerepo "baseos" \
--setopt=install_weak_deps=0 \
--setopt=keepcache=0 \
--best \
--setopt=tsflags=nodocs \
tzdata && \
microdnf download libcurl && \
rpm -Uvh --nodeps --replacefiles "*curl*$( uname -i ).rpm" && \
microdnf remove -y libcurl-minimal && \
rm -rf "*curl*$( uname -i ).rpm" && \
2021-10-16 17:49:19 +02:00
groupadd \
--system \
--gid 1995 \
zabbix && \
useradd \
--system \
--comment "Zabbix monitoring system" \
-g zabbix \
-G dialout \
2021-10-16 17:49:19 +02:00
--uid 1997 \
--shell /sbin/nologin \
--home-dir /var/lib/zabbix/ \
zabbix && \
chgrp zabbix /usr/bin/nmap && \
setcap cap_net_raw+eip /usr/bin/nmap && \
2021-10-16 17:49:19 +02:00
mkdir -p /etc/zabbix && \
mkdir -p /var/lib/zabbix && \
mkdir -p /usr/lib/zabbix/alertscripts && \
2024-05-29 11:04:14 +02:00
mkdir -p /var/lib/zabbix/dbscripts && \
2021-10-16 17:49:19 +02:00
mkdir -p /var/lib/zabbix/enc && \
mkdir -p /var/lib/zabbix/export && \
mkdir -p /usr/lib/zabbix/externalscripts && \
mkdir -p /var/lib/zabbix/mibs && \
mkdir -p /var/lib/zabbix/modules && \
mkdir -p /var/lib/zabbix/snmptraps && \
mkdir -p /var/lib/zabbix/ssh_keys && \
mkdir -p /var/lib/zabbix/ssl && \
mkdir -p /var/lib/zabbix/ssl/certs && \
mkdir -p /var/lib/zabbix/ssl/keys && \
mkdir -p /var/lib/zabbix/ssl/ssl_ca && \
mkdir -p /usr/share/doc/zabbix-server-postgresql && \
2020-04-26 18:45:42 +02:00
chown --quiet -R zabbix:root /etc/zabbix/ /var/lib/zabbix/ && \
chgrp -R 0 /etc/zabbix/ /var/lib/zabbix/ && \
chmod -R g=u /etc/zabbix/ /var/lib/zabbix/ && \
microdnf -y clean all
2018-02-18 21:45:33 +01:00
EXPOSE 10051/TCP
WORKDIR /var/lib/zabbix
2020-07-14 00:22:07 +02:00
VOLUME ["/var/lib/zabbix/snmptraps", "/var/lib/zabbix/export"]
2020-07-13 23:43:32 +02:00
2018-02-18 21:45:33 +01:00
COPY ["docker-entrypoint.sh", "/usr/bin/"]
2021-10-06 22:39:49 +02:00
ENTRYPOINT ["/usr/bin/tini", "--", "/usr/bin/docker-entrypoint.sh"]
2020-04-26 18:45:42 +02:00
USER 1997
2021-10-06 22:39:49 +02:00
2020-04-26 18:45:42 +02:00
CMD ["/usr/sbin/zabbix_server", "--foreground", "-c", "/etc/zabbix/zabbix_server.conf"]