2021-10-06 22:39:49 +02:00
|
|
|
# syntax=docker/dockerfile:1
|
|
|
|
ARG MAJOR_VERSION=6.0
|
2022-03-01 13:41:21 +01:00
|
|
|
ARG ZBX_VERSION=${MAJOR_VERSION}.1
|
2021-10-06 22:39:49 +02:00
|
|
|
ARG BUILD_BASE_IMAGE=zabbix-build-mysql:centos-${ZBX_VERSION}
|
|
|
|
|
|
|
|
FROM ${BUILD_BASE_IMAGE} as builder
|
|
|
|
|
2021-10-16 17:49:19 +02:00
|
|
|
FROM centos:centos8
|
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}
|
2020-04-26 18:45:42 +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 agent is deployed on a monitoring target to actively monitor local resources and applications" \
|
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 agent" \
|
|
|
|
org.opencontainers.image.url="https://zabbix.com/" \
|
|
|
|
org.opencontainers.image.vendor="Zabbix LLC" \
|
|
|
|
org.opencontainers.image.version="${ZBX_VERSION}"
|
2020-04-26 18:45:42 +02:00
|
|
|
|
|
|
|
STOPSIGNAL SIGTERM
|
2018-05-26 12:58:52 +02:00
|
|
|
|
2021-10-06 22:39:49 +02:00
|
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/src/zabbix_agent/zabbix_agentd", "/usr/sbin/zabbix_agentd"]
|
|
|
|
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_agentd.conf", "/etc/zabbix/zabbix_agentd.conf"]
|
2020-04-26 18:45:42 +02:00
|
|
|
|
|
|
|
RUN set -eux && \
|
2021-10-16 17:49:19 +02:00
|
|
|
REPOLIST="baseos,appstream,epel" && \
|
|
|
|
INSTALL_PKGS="bash \
|
|
|
|
tini \
|
|
|
|
tzdata \
|
|
|
|
iputils \
|
2022-01-22 13:44:37 +01:00
|
|
|
pcre2 \
|
2021-10-16 17:49:19 +02:00
|
|
|
libcurl-minimal \
|
|
|
|
openssl-libs \
|
|
|
|
zlib" && \
|
2021-10-16 18:18:04 +02:00
|
|
|
dnf -y install epel-release && \
|
|
|
|
dnf -y install \
|
|
|
|
--disablerepo "*" \
|
|
|
|
--enablerepo "${REPOLIST}" \
|
|
|
|
--setopt=tsflags=nodocs \
|
|
|
|
--setopt=install_weak_deps=False \
|
|
|
|
--best \
|
|
|
|
${INSTALL_PKGS} && \
|
2021-10-16 17:49:19 +02:00
|
|
|
groupadd \
|
|
|
|
--system \
|
|
|
|
--gid 1995 \
|
|
|
|
zabbix && \
|
2020-12-19 17:42:48 +01:00
|
|
|
useradd \
|
|
|
|
--system --comment "Zabbix monitoring system" \
|
2020-04-26 18:45:42 +02:00
|
|
|
-g zabbix -G root \
|
2020-12-19 17:42:48 +01:00
|
|
|
--uid 1997 \
|
|
|
|
--shell /sbin/nologin \
|
|
|
|
--home-dir /var/lib/zabbix/ \
|
2020-04-26 18:45:42 +02:00
|
|
|
zabbix && \
|
|
|
|
mkdir -p /etc/zabbix && \
|
|
|
|
mkdir -p /etc/zabbix/zabbix_agentd.d && \
|
|
|
|
mkdir -p /var/lib/zabbix && \
|
|
|
|
mkdir -p /var/lib/zabbix/enc && \
|
|
|
|
mkdir -p /var/lib/zabbix/modules && \
|
|
|
|
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/ && \
|
2021-10-16 18:18:04 +02:00
|
|
|
dnf -y clean all && \
|
2020-04-26 18:45:42 +02:00
|
|
|
rm -rf /var/cache/yum /var/lib/yum/yumdb/* /usr/lib/udev/hwdb.d/* && \
|
2020-08-06 22:22:01 +02:00
|
|
|
rm -rf /var/cache/dnf /etc/udev/hwdb.bin /root/.pki
|
2018-02-18 21:45:33 +01:00
|
|
|
|
|
|
|
EXPOSE 10050/TCP
|
|
|
|
|
|
|
|
WORKDIR /var/lib/zabbix
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
CMD ["/usr/sbin/zabbix_agentd", "--foreground", "-c", "/etc/zabbix/zabbix_agentd.conf"]
|