2021-09-13 00:06:51 +02:00
|
|
|
# syntax=docker/dockerfile:1
|
2023-03-07 09:07:13 +01:00
|
|
|
ARG MAJOR_VERSION=7.0
|
2024-07-22 10:53:08 +02:00
|
|
|
ARG ZBX_VERSION=${MAJOR_VERSION}.1
|
2021-09-13 00:06:51 +02:00
|
|
|
ARG BUILD_BASE_IMAGE=zabbix-build-mysql:ubuntu-${ZBX_VERSION}
|
|
|
|
|
2024-02-13 17:07:53 +01:00
|
|
|
FROM ${BUILD_BASE_IMAGE} AS builder
|
2021-09-13 00:06:51 +02:00
|
|
|
|
2024-04-23 19:18:27 +02:00
|
|
|
FROM ubuntu:noble
|
2021-04-10 12:38:02 +02:00
|
|
|
|
2021-09-13 00:06:51 +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-09-13 00:06:51 +02:00
|
|
|
|
2021-10-16 17:49:19 +02:00
|
|
|
ENV TERM=xterm \
|
|
|
|
ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES}
|
2021-09-13 00:06:51 +02:00
|
|
|
|
2021-10-16 17:49:19 +02:00
|
|
|
LABEL org.opencontainers.image.authors="Alexey Pustovalov <alexey.pustovalov@zabbix.com>" \
|
2021-04-10 12:38:02 +02:00
|
|
|
org.opencontainers.image.description="Zabbix agent 2 is deployed on a monitoring target to actively monitor local resources and applications" \
|
2021-09-13 00:06:51 +02:00
|
|
|
org.opencontainers.image.documentation="https://www.zabbix.com/documentation/${MAJOR_VERSION}/manual/installation/containers" \
|
2024-05-13 19:31:38 +02:00
|
|
|
org.opencontainers.image.licenses="AGPL v3.0" \
|
2021-10-16 17:49:19 +02:00
|
|
|
org.opencontainers.image.source="${ZBX_SOURCES}" \
|
|
|
|
org.opencontainers.image.title="Zabbix agent 2" \
|
|
|
|
org.opencontainers.image.url="https://zabbix.com/" \
|
2024-05-13 19:31:38 +02:00
|
|
|
org.opencontainers.image.vendor="Zabbix SIA" \
|
2021-10-16 17:49:19 +02:00
|
|
|
org.opencontainers.image.version="${ZBX_VERSION}"
|
2021-04-10 12:38:02 +02:00
|
|
|
|
|
|
|
STOPSIGNAL SIGTERM
|
|
|
|
|
2024-06-01 09:15:19 +02:00
|
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}-output/agent2/sbin/", "/usr/sbin/"]
|
2024-06-01 08:10:31 +02:00
|
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}-output/general/bin/*", "/usr/bin/"]
|
|
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}-output/agent2/conf/", "/etc/zabbix/"]
|
2021-09-13 00:06:51 +02:00
|
|
|
|
2024-02-18 15:27:03 +01:00
|
|
|
RUN --mount=type=cache,target=/var/lib/apt/,sharing=locked \
|
|
|
|
set -eux && \
|
2021-04-10 12:38:02 +02:00
|
|
|
echo "#!/bin/sh\nexit 101" > /usr/sbin/policy-rc.d && \
|
2023-09-12 18:35:24 +02:00
|
|
|
INSTALL_PKGS="tzdata \
|
2021-10-16 17:49:19 +02:00
|
|
|
ca-certificates \
|
2021-11-13 16:09:15 +01:00
|
|
|
smartmontools \
|
|
|
|
sudo \
|
2024-04-24 11:56:11 +02:00
|
|
|
libssl3t64 \
|
|
|
|
libcurl4t64 \
|
2022-01-22 13:44:37 +01:00
|
|
|
libpcre2-8-0 \
|
2021-10-16 17:49:19 +02:00
|
|
|
libldap-2.4" && \
|
|
|
|
apt-get -y update && \
|
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get -y \
|
|
|
|
--no-install-recommends install \
|
|
|
|
${INSTALL_PKGS} && \
|
|
|
|
groupadd \
|
|
|
|
--system \
|
|
|
|
--gid 1995 \
|
|
|
|
zabbix && \
|
2021-04-10 12:38:02 +02:00
|
|
|
useradd \
|
2021-10-16 17:49:19 +02:00
|
|
|
--system \
|
|
|
|
--comment "Zabbix monitoring system" \
|
|
|
|
-g zabbix \
|
2021-04-10 12:38:02 +02:00
|
|
|
--uid 1997 \
|
|
|
|
--shell /sbin/nologin \
|
|
|
|
--home-dir /var/lib/zabbix/ \
|
|
|
|
zabbix && \
|
2024-01-18 16:19:02 +01:00
|
|
|
echo "zabbix ALL=(root) NOPASSWD: /usr/sbin/smartctl" >> /etc/sudoers.d/zabbix && \
|
2021-04-10 12:38:02 +02:00
|
|
|
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 && \
|
2021-08-25 15:00:35 +02:00
|
|
|
mkdir -p /var/lib/zabbix/buffer && \
|
2022-12-14 08:33:01 +01:00
|
|
|
chown --quiet -R zabbix:root /etc/zabbix/ /var/lib/zabbix/ /usr/sbin/zabbix-agent2-plugin/ && \
|
|
|
|
chgrp -R 0 /etc/zabbix/ /var/lib/zabbix/ /usr/sbin/zabbix-agent2-plugin/ && \
|
|
|
|
chmod -R g=u /etc/zabbix/ /var/lib/zabbix/ /usr/sbin/zabbix-agent2-plugin/ && \
|
2021-04-10 12:38:02 +02:00
|
|
|
apt-get -y autoremove && \
|
2024-02-18 15:27:03 +01:00
|
|
|
apt-get -y clean
|
2021-04-10 12:38:02 +02:00
|
|
|
|
|
|
|
EXPOSE 10050/TCP
|
|
|
|
|
|
|
|
WORKDIR /var/lib/zabbix
|
|
|
|
|
|
|
|
COPY ["docker-entrypoint.sh", "/usr/bin/"]
|
|
|
|
|
2023-09-12 18:35:24 +02:00
|
|
|
ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
|
2021-04-10 12:38:02 +02:00
|
|
|
|
|
|
|
USER 1997
|
|
|
|
|
|
|
|
CMD ["/usr/sbin/zabbix_agent2", "--foreground", "-c", "/etc/zabbix/zabbix_agent2.conf"]
|