103 lines
3.5 KiB
Docker
103 lines
3.5 KiB
Docker
# syntax=docker/dockerfile:1.6
|
|
ARG OS_BASE_IMAGE=alpine:3.24
|
|
ARG MAJOR_VERSION=7.4
|
|
ARG ZBX_VERSION=${MAJOR_VERSION}.12
|
|
ARG BUILD_BASE_IMAGE=zabbix-build-mysql:alpine-${ZBX_VERSION}
|
|
|
|
FROM ${BUILD_BASE_IMAGE} AS builder
|
|
|
|
FROM ${OS_BASE_IMAGE}
|
|
|
|
ARG MAJOR_VERSION
|
|
ARG ZBX_VERSION
|
|
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
|
|
|
|
ENV TERM=xterm \
|
|
ZBX_VERSION=${ZBX_VERSION} \
|
|
ZBX_SOURCES=${ZBX_SOURCES} \
|
|
ZABBIX_USER_HOME_DIR=/var/lib/zabbix \
|
|
ZABBIX_CONF_DIR=/etc/zabbix
|
|
|
|
ENV ZBX_LOADMODULEPATH=${ZABBIX_USER_HOME_DIR}/modules \
|
|
ZBX_USERPARAMETERDIR=${ZABBIX_USER_HOME_DIR}/user_scripts
|
|
|
|
LABEL org.opencontainers.image.authors="Alexey Pustovalov <alexey.pustovalov@zabbix.com>" \
|
|
org.opencontainers.image.description="Zabbix agent is deployed on a monitoring target to actively monitor local resources and applications" \
|
|
org.opencontainers.image.documentation="https://www.zabbix.com/documentation/${MAJOR_VERSION}/manual/installation/containers" \
|
|
org.opencontainers.image.licenses="AGPL v3.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 SIA" \
|
|
org.opencontainers.image.version="${ZBX_VERSION}"
|
|
|
|
STOPSIGNAL SIGTERM
|
|
|
|
COPY --from=builder /tmp/zabbix-${ZBX_VERSION}-output/agent/sbin/zabbix_agentd /usr/sbin/
|
|
COPY --from=builder /tmp/zabbix-${ZBX_VERSION}-output/general/bin/zabbix_get /usr/bin/
|
|
COPY --from=builder /tmp/zabbix-${ZBX_VERSION}-output/general/bin/zabbix_sender /usr/bin/
|
|
COPY --from=builder /tmp/zabbix-${ZBX_VERSION}-output/agent/conf/ ${ZABBIX_CONF_DIR}/
|
|
|
|
RUN set -eux && \
|
|
INSTALL_PKGS="bash \
|
|
coreutils \
|
|
tzdata \
|
|
c-ares \
|
|
libcurl \
|
|
libgcc \
|
|
libldap \
|
|
libmodbus \
|
|
pcre2 \
|
|
zlib \
|
|
iputils" && \
|
|
apk add \
|
|
--no-cache \
|
|
--clean-protected \
|
|
${INSTALL_PKGS} && \
|
|
addgroup \
|
|
--system \
|
|
--gid 1995 \
|
|
zabbix && \
|
|
adduser \
|
|
--system \
|
|
--gecos "Zabbix monitoring system" \
|
|
--disabled-password \
|
|
--uid 1997 \
|
|
--ingroup zabbix \
|
|
--shell /sbin/nologin \
|
|
--home ${ZABBIX_USER_HOME_DIR} \
|
|
zabbix && \
|
|
mkdir -p ${ZABBIX_CONF_DIR} \
|
|
${ZABBIX_CONF_DIR}/zabbix_agentd.d \
|
|
${ZABBIX_USER_HOME_DIR} \
|
|
${ZABBIX_USER_HOME_DIR}/enc \
|
|
${ZABBIX_USER_HOME_DIR}/enc_internal \
|
|
${ZABBIX_USER_HOME_DIR}/modules \
|
|
${ZBX_USERPARAMETERDIR} && \
|
|
FIX_PERM_LIST="\
|
|
${ZABBIX_CONF_DIR}/zabbix_agentd_modules.conf \
|
|
${ZABBIX_CONF_DIR}/zabbix_agentd_item_keys.conf \
|
|
${ZABBIX_CONF_DIR}/zabbix_agentd.d/ \
|
|
${ZABBIX_USER_HOME_DIR}/" && \
|
|
chown --quiet -R zabbix:0 ${FIX_PERM_LIST} && \
|
|
chmod -R g=u ${FIX_PERM_LIST} && \
|
|
chown --quiet zabbix:0 ${ZABBIX_CONF_DIR}/ && \
|
|
chmod g=u ${ZABBIX_CONF_DIR} && \
|
|
/usr/sbin/zabbix_agentd -V
|
|
|
|
RUN --mount=from=entrypoints,target=/tmp/entrypoints,ro \
|
|
set -eux && \
|
|
install -d /usr/lib/docker-entrypoint && \
|
|
install -m 0755 /tmp/entrypoints/agent.sh /usr/bin/docker-entrypoint.sh && \
|
|
install -m 0644 /tmp/entrypoints/lib/*.sh /usr/lib/docker-entrypoint/
|
|
|
|
EXPOSE 10050/tcp
|
|
|
|
WORKDIR ${ZABBIX_USER_HOME_DIR}
|
|
|
|
USER 1997
|
|
|
|
ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
|
|
|
|
CMD ["/usr/sbin/zabbix_agentd", "--foreground", "-c", "/etc/zabbix/zabbix_agentd.conf"]
|