2021-10-15 21:55:46 +02:00
|
|
|
# syntax=docker/dockerfile:1
|
2023-03-07 09:07:13 +01:00
|
|
|
ARG MAJOR_VERSION=7.0
|
2024-11-20 12:48:05 +01:00
|
|
|
ARG RELEASE=6
|
|
|
|
ARG ZBX_VERSION=${MAJOR_VERSION}.6
|
2021-10-15 21:55:46 +02:00
|
|
|
ARG BUILD_BASE_IMAGE=zabbix-build-sqlite3:rhel-${ZBX_VERSION}
|
|
|
|
|
2024-02-13 17:07:53 +01:00
|
|
|
FROM ${BUILD_BASE_IMAGE} AS builder
|
2021-10-15 21:55:46 +02:00
|
|
|
|
2024-11-14 07:27:37 +01:00
|
|
|
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5
|
2021-10-15 21:55:46 +02:00
|
|
|
|
2021-10-16 17:49:19 +02:00
|
|
|
ARG MAJOR_VERSION
|
2021-10-15 21:55:46 +02:00
|
|
|
ARG RELEASE
|
|
|
|
ARG ZBX_VERSION
|
2021-10-16 17:49:19 +02:00
|
|
|
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
|
2021-10-15 21:55:46 +02:00
|
|
|
|
2021-10-16 17:49:19 +02:00
|
|
|
ENV TERM=xterm \
|
|
|
|
ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES} \
|
2024-01-18 16:19:02 +01:00
|
|
|
MIBDIRS=/usr/share/snmp/mibs:/var/lib/zabbix/mibs MIBS=+ALL \
|
|
|
|
NMAP_PRIVILEGED=""
|
2021-06-11 23:07:45 +02:00
|
|
|
|
2021-10-16 17:49:19 +02:00
|
|
|
LABEL description="Zabbix proxy with SQLite3 database support" \
|
2021-06-11 23:07:45 +02:00
|
|
|
maintainer="alexey.pustovalov@zabbix.com" \
|
2024-06-04 07:59:24 +02:00
|
|
|
name="zabbix/zabbix-proxy-sqlite-70" \
|
2021-06-11 23:07:45 +02:00
|
|
|
release="${RELEASE}" \
|
2024-06-04 07:59:24 +02:00
|
|
|
run="docker run --name zabbix-proxy -p 10051:10051 -d registry.connect.redhat.com/zabbix/zabbix-proxy-sqlite-70:${ZBX_VERSION}" \
|
2021-06-11 23:07:45 +02:00
|
|
|
summary="Zabbix proxy (SQLite3)" \
|
|
|
|
url="https://www.zabbix.com/" \
|
2024-05-13 19:31:38 +02:00
|
|
|
vendor="Zabbix SIA" \
|
2021-10-16 17:49:19 +02:00
|
|
|
version="${MAJOR_VERSION}" \
|
2021-06-11 23:07:45 +02:00
|
|
|
io.k8s.description="Zabbix proxy with SQLite3 database support" \
|
|
|
|
io.k8s.display-name="Zabbix proxy (SQLite3)" \
|
|
|
|
io.openshift.expose-services="10051:10051" \
|
|
|
|
io.openshift.tags="zabbix,zabbix-proxy,sqlite" \
|
|
|
|
org.label-schema.build-date="${BUILD_DATE}" \
|
2021-10-16 17:49:19 +02:00
|
|
|
org.label-schema.description="Zabbix proxy with SQLite3 database support" \
|
2024-06-04 07:59:24 +02:00
|
|
|
org.label-schema.docker.cmd="docker run --name zabbix-proxy -p 10051:10051 -d registry.connect.redhat.com/zabbix/zabbix-proxy-sqlite3-70:${ZBX_VERSION}" \
|
2024-05-13 19:31:38 +02:00
|
|
|
org.label-schema.license="AGPL v3.0" \
|
2021-10-16 17:49:19 +02:00
|
|
|
org.label-schema.name="zabbix-proxy-sqlite-rhel" \
|
|
|
|
org.label-schema.schema-version="1.0" \
|
|
|
|
org.label-schema.url="https://zabbix.com/" \
|
2021-06-11 23:07:45 +02:00
|
|
|
org.label-schema.usage="https://www.zabbix.com/documentation/${MAJOR_VERSION}/manual/installation/containers" \
|
2021-10-16 17:49:19 +02:00
|
|
|
org.label-schema.vcs-ref="${VCS_REF}" \
|
2021-06-11 23:07:45 +02:00
|
|
|
org.label-schema.vcs-url="${ZBX_SOURCES}" \
|
2024-05-13 19:31:38 +02:00
|
|
|
org.label-schema.vendor="Zabbix SIA" \
|
2021-10-16 17:49:19 +02:00
|
|
|
org.label-schema.version="${ZBX_VERSION}"
|
2021-06-11 23:07:45 +02:00
|
|
|
|
|
|
|
STOPSIGNAL SIGTERM
|
|
|
|
|
|
|
|
COPY ["licenses", "/licenses"]
|
2024-06-01 08:10:31 +02:00
|
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}-output/proxy/sbin/zabbix_proxy", "/usr/sbin/zabbix_proxy"]
|
|
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}-output/proxy/conf/", "/etc/zabbix/"]
|
|
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}-output/general/bin/", "/usr/bin/"]
|
2021-06-11 23:07:45 +02:00
|
|
|
|
2024-02-18 15:27:03 +01:00
|
|
|
RUN --mount=type=tmpfs,target=/var/lib/dnf/ \
|
2024-03-02 15:51:27 +01:00
|
|
|
--mount=type=bind,target=/run/secrets/,src=secrets/ \
|
2024-02-18 15:27:03 +01:00
|
|
|
set -eux && \
|
2021-10-16 17:49:19 +02:00
|
|
|
INSTALL_PKGS="bash \
|
2022-07-20 16:37:00 +02:00
|
|
|
traceroute \
|
|
|
|
nmap \
|
2021-10-15 21:55:46 +02:00
|
|
|
shadow-utils \
|
2021-06-11 23:07:45 +02:00
|
|
|
fping \
|
|
|
|
iputils \
|
2023-01-30 11:29:52 +01:00
|
|
|
libcurl-minimal \
|
2021-06-11 23:07:45 +02:00
|
|
|
libevent \
|
|
|
|
openldap \
|
|
|
|
libssh \
|
|
|
|
libxml2 \
|
|
|
|
net-snmp-agent-libs \
|
|
|
|
OpenIPMI-libs \
|
2022-01-22 13:44:37 +01:00
|
|
|
pcre2 \
|
2021-06-11 23:07:45 +02:00
|
|
|
sqlite-libs \
|
2024-03-24 14:42:53 +01:00
|
|
|
unixODBC \
|
|
|
|
zlib" && \
|
2024-03-24 12:15:18 +01:00
|
|
|
curl --tlsv1.2 -sSf -L https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm -o /tmp/epel-release-latest-9.noarch.rpm && \
|
2023-01-30 11:29:52 +01:00
|
|
|
rpm -ivh /tmp/epel-release-latest-9.noarch.rpm && \
|
|
|
|
rm -rf /tmp/epel-release-latest-9.noarch.rpm && \
|
2023-04-01 18:00:37 +02:00
|
|
|
ARCH_SUFFIX="$(arch)"; \
|
2021-10-15 21:55:46 +02:00
|
|
|
microdnf -y install \
|
2021-10-16 17:49:19 +02:00
|
|
|
--disablerepo "*" \
|
2023-01-30 11:29:52 +01:00
|
|
|
--enablerepo "ubi-9-baseos-rpms" \
|
|
|
|
--enablerepo "ubi-9-appstream-rpms" \
|
2023-04-01 18:00:37 +02:00
|
|
|
--enablerepo "rhel-9-for-$ARCH_SUFFIX-baseos-rpms" \
|
|
|
|
--enablerepo "rhel-9-for-$ARCH_SUFFIX-appstream-rpms" \
|
2021-10-16 17:49:19 +02:00
|
|
|
--enablerepo "epel" \
|
|
|
|
--setopt=install_weak_deps=0 \
|
2024-02-18 15:27:03 +01:00
|
|
|
--setopt=keepcache=0 \
|
2021-10-16 17:49:19 +02:00
|
|
|
--best \
|
|
|
|
--setopt=tsflags=nodocs \
|
2021-10-15 21:55:46 +02:00
|
|
|
${INSTALL_PKGS} && \
|
2024-03-02 15:51:27 +01:00
|
|
|
microdnf -y update \
|
|
|
|
--disableplugin=subscription-manager \
|
|
|
|
--disablerepo "*" \
|
|
|
|
--enablerepo "ubi-9-baseos-rpms" \
|
|
|
|
--setopt=install_weak_deps=0 \
|
|
|
|
--best \
|
|
|
|
--setopt=tsflags=nodocs \
|
|
|
|
tzdata && \
|
2022-05-04 20:26:27 +02:00
|
|
|
microdnf -y reinstall \
|
2024-03-02 15:51:27 +01:00
|
|
|
--disableplugin=subscription-manager \
|
|
|
|
--disablerepo "*" \
|
2023-01-30 11:29:52 +01:00
|
|
|
--enablerepo "ubi-9-baseos-rpms" \
|
2022-05-04 20:26:27 +02:00
|
|
|
--setopt=install_weak_deps=0 \
|
2024-02-18 15:27:03 +01:00
|
|
|
--setopt=keepcache=0 \
|
2022-05-04 20:26:27 +02:00
|
|
|
--best \
|
|
|
|
--setopt=tsflags=nodocs \
|
|
|
|
tzdata && \
|
2021-10-16 17:49:19 +02:00
|
|
|
groupadd \
|
|
|
|
--system \
|
|
|
|
--gid 1995 \
|
|
|
|
zabbix && \
|
2021-06-11 23:07:45 +02:00
|
|
|
useradd \
|
2021-10-16 17:49:19 +02:00
|
|
|
--system \
|
|
|
|
--comment "Zabbix monitoring system" \
|
|
|
|
-g zabbix \
|
2021-06-11 23:07:45 +02:00
|
|
|
--uid 1997 \
|
|
|
|
--shell /sbin/nologin \
|
|
|
|
--home-dir /var/lib/zabbix/ \
|
|
|
|
zabbix && \
|
2024-01-18 16:19:02 +01:00
|
|
|
chgrp zabbix /usr/bin/nmap && \
|
|
|
|
setcap cap_net_raw+eip /usr/bin/nmap && \
|
2021-06-11 23:07:45 +02:00
|
|
|
mkdir -p /etc/zabbix && \
|
|
|
|
mkdir -p /var/lib/zabbix && \
|
2021-08-04 17:47:46 +02:00
|
|
|
mkdir -p /var/lib/zabbix/db_data && \
|
2021-06-11 23:07:45 +02:00
|
|
|
mkdir -p /var/lib/zabbix/enc && \
|
2024-08-21 13:26:24 +02:00
|
|
|
mkdir -p /var/lib/zabbix/enc_internal && \
|
2021-06-11 23:07:45 +02:00
|
|
|
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 && \
|
|
|
|
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/ && \
|
2024-02-18 15:27:03 +01:00
|
|
|
microdnf -y clean all
|
2021-06-11 23:07:45 +02:00
|
|
|
|
|
|
|
EXPOSE 10051/TCP
|
|
|
|
|
|
|
|
WORKDIR /var/lib/zabbix
|
|
|
|
|
|
|
|
VOLUME ["/var/lib/zabbix/snmptraps"]
|
|
|
|
|
|
|
|
COPY ["docker-entrypoint.sh", "/usr/bin/"]
|
|
|
|
|
2023-09-12 18:35:24 +02:00
|
|
|
ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
|
2021-06-11 23:07:45 +02:00
|
|
|
|
|
|
|
USER 1997
|
|
|
|
|
|
|
|
CMD ["/usr/sbin/zabbix_proxy", "--foreground", "-c", "/etc/zabbix/zabbix_proxy.conf"]
|