mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-11-22 15:53:35 +01:00
72 lines
2.5 KiB
Docker
72 lines
2.5 KiB
Docker
FROM quay.io/centos/centos:stream9-minimal
|
|
|
|
ARG MAJOR_VERSION=6.4
|
|
ARG ZBX_VERSION=${MAJOR_VERSION}.11
|
|
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
|
|
|
|
ENV TERM=xterm \
|
|
ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES} \
|
|
MIBDIRS=/usr/share/snmp/mibs:/var/lib/zabbix/mibs MIBS=+ALL \
|
|
ZBX_SNMP_TRAP_DATE_FORMAT=+%Y%m%d.%H%M%S ZBX_SNMP_TRAP_FORMAT="\n" \
|
|
ZBX_SNMP_TRAP_USE_DNS=false
|
|
|
|
LABEL org.opencontainers.image.authors="Alexey Pustovalov <alexey.pustovalov@zabbix.com>" \
|
|
org.opencontainers.image.description="Zabbix SNMP traps receiver" \
|
|
org.opencontainers.image.documentation="https://www.zabbix.com/documentation/${MAJOR_VERSION}/manual/installation/containers" \
|
|
org.opencontainers.image.licenses="GPL v2.0" \
|
|
org.opencontainers.image.title="zabbix-snmptraps" \
|
|
org.opencontainers.image.url="https://zabbix.com/" \
|
|
org.opencontainers.image.vendor="Zabbix LLC" \
|
|
org.opencontainers.image.version="${ZBX_VERSION}"
|
|
|
|
STOPSIGNAL SIGTERM
|
|
|
|
RUN --mount=type=tmpfs,target=/var/lib/dnf/ \
|
|
set -eux && \
|
|
INSTALL_PKGS="bash \
|
|
tzdata \
|
|
shadow-utils \
|
|
net-snmp" && \
|
|
microdnf -y install \
|
|
--disablerepo "*" \
|
|
--enablerepo "baseos" \
|
|
--enablerepo "appstream" \
|
|
--setopt=install_weak_deps=0 \
|
|
--setopt=keepcache=0 \
|
|
--best \
|
|
--nodocs ${INSTALL_PKGS} && \
|
|
groupadd \
|
|
--system \
|
|
--gid 1995 \
|
|
zabbix && \
|
|
useradd \
|
|
--system \
|
|
--comment "Zabbix monitoring system" \
|
|
-g zabbix \
|
|
--uid 1997 \
|
|
--shell /sbin/nologin \
|
|
--home-dir /var/lib/zabbix/ \
|
|
zabbix && \
|
|
mkdir -p /var/lib/zabbix && \
|
|
mkdir -p /var/lib/zabbix/snmptraps && \
|
|
mkdir -p /var/lib/zabbix/mibs && \
|
|
touch /var/lib/net-snmp/snmptrapd.conf && \
|
|
chown --quiet -R zabbix:root /etc/snmp/ /var/lib/zabbix/ /var/tmp/ /var/run/ && \
|
|
chgrp -R 0 /etc/snmp/ /var/lib/zabbix/ /var/tmp/ /var/run/ && \
|
|
chmod -R g=u /etc/snmp/ /var/lib/zabbix/ /var/tmp/ /var/run/ && \
|
|
microdnf -y clean all
|
|
|
|
EXPOSE 1162/UDP
|
|
|
|
WORKDIR /var/lib/zabbix/snmptraps/
|
|
|
|
VOLUME ["/var/lib/zabbix/snmptraps"]
|
|
|
|
COPY ["conf/etc/logrotate.d/zabbix_snmptraps", "/etc/logrotate.d/"]
|
|
COPY ["conf/etc/snmp/snmptrapd.conf", "/etc/snmp/"]
|
|
COPY ["conf/usr/sbin/zabbix_trap_handler.sh", "/usr/sbin/"]
|
|
|
|
USER 1997
|
|
|
|
CMD ["/usr/sbin/snmptrapd", "-n", "-C", "-c", "/etc/snmp/snmptrapd.conf", "-Lo", "-A"]
|