mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-11-23 16:23:56 +01:00
88 lines
3.2 KiB
Docker
88 lines
3.2 KiB
Docker
# syntax=docker/dockerfile:1
|
|
ARG MAJOR_VERSION=6.2
|
|
ARG ZBX_VERSION=${MAJOR_VERSION}
|
|
ARG BUILD_BASE_IMAGE=zabbix-build-mysql:ol-${ZBX_VERSION}
|
|
|
|
FROM ${BUILD_BASE_IMAGE} as builder
|
|
|
|
FROM oraclelinux:8-slim
|
|
|
|
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}
|
|
|
|
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="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}"
|
|
|
|
STOPSIGNAL SIGTERM
|
|
|
|
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"]
|
|
COPY ["conf/etc/yum.repos.d/oracle-epel-ol8.repo", "/etc/yum.repos.d/oracle-epel-ol8.repo"]
|
|
|
|
RUN set -eux && \
|
|
INSTALL_PKGS="bash \
|
|
tini \
|
|
tzdata \
|
|
iputils \
|
|
pcre2 \
|
|
libcurl \
|
|
openssl-libs \
|
|
zlib" && \
|
|
microdnf -y install \
|
|
--disablerepo="*" \
|
|
--enablerepo="ol8_baseos_latest" \
|
|
--enablerepo="ol8_appstream" \
|
|
--enablerepo="ol8_developer_EPEL" \
|
|
--setopt=install_weak_deps=0 \
|
|
--best \
|
|
--nodocs \
|
|
${INSTALL_PKGS} && \
|
|
groupadd \
|
|
--system \
|
|
--gid 1995 \
|
|
zabbix && \
|
|
useradd \
|
|
--system \
|
|
--comment "Zabbix monitoring system" \
|
|
-g zabbix -G root \
|
|
--uid 1997 \
|
|
--shell /sbin/nologin \
|
|
--home-dir /var/lib/zabbix/ \
|
|
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/ && \
|
|
microdnf -y clean all && \
|
|
rm -rf /var/cache/yum /var/lib/yum/yumdb/* /usr/lib/udev/hwdb.d/* && \
|
|
rm -rf /var/cache/dnf /etc/udev/hwdb.bin /root/.pki
|
|
|
|
EXPOSE 10050/TCP
|
|
|
|
WORKDIR /var/lib/zabbix
|
|
|
|
COPY ["docker-entrypoint.sh", "/usr/bin/"]
|
|
|
|
ENTRYPOINT ["/usr/bin/tini", "--", "/usr/bin/docker-entrypoint.sh"]
|
|
|
|
USER 1997
|
|
|
|
CMD ["/usr/sbin/zabbix_agentd", "--foreground", "-c", "/etc/zabbix/zabbix_agentd.conf"]
|