mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-11-14 03:44:49 +01:00
129 lines
5.2 KiB
Docker
129 lines
5.2 KiB
Docker
FROM centos:centos8
|
|
|
|
LABEL org.opencontainers.image.title="Zabbix agent" \
|
|
org.opencontainers.image.authors="Alexey Pustovalov <alexey.pustovalov@zabbix.com>" \
|
|
org.opencontainers.image.vendor="Zabbix LLC" \
|
|
org.opencontainers.image.url="https://zabbix.com/" \
|
|
org.opencontainers.image.description="Zabbix agent is deployed on a monitoring target to actively monitor local resources and applications" \
|
|
org.opencontainers.image.licenses="GPL v2.0"
|
|
|
|
STOPSIGNAL SIGTERM
|
|
|
|
ENV TINI_VERSION=v0.19.0
|
|
|
|
RUN set -eux && \
|
|
ARCH_SUFFIX="$(arch)"; \
|
|
case "$ARCH_SUFFIX" in \
|
|
i686) export ARCH_SUFFIX='i386' ;; \
|
|
x86_64) [ -f /lib64/ld-linux-x86-64.so.2 ] && export ARCH_SUFFIX='amd64' || export ARCH_SUFFIX='i386' ;; \
|
|
aarch64) export ARCH_SUFFIX='arm64' ;; \
|
|
armv7l) export ARCH_SUFFIX='armhf' ;; \
|
|
ppc64el|ppc64le) export ARCH_SUFFIX='ppc64le' ;; \
|
|
s390x) export ARCH_SUFFIX='s390x' ;; \
|
|
*) echo "Unknown ARCH_SUFFIX=${ARCH_SUFFIX-}"; exit 1 ;; \
|
|
esac; \
|
|
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 && \
|
|
dnf --quiet makecache && \
|
|
dnf -y install --setopt=tsflags=nodocs --setopt=install_weak_deps=False --best \
|
|
libcurl-minimal \
|
|
zlib \
|
|
tzdata \
|
|
openssl-libs && \
|
|
curl -L "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-${ARCH_SUFFIX}" -o /sbin/tini && \
|
|
curl -L "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-${ARCH_SUFFIX}.asc" -o /tmp/tini.asc && \
|
|
export GNUPGHOME="$(mktemp -d)" && \
|
|
for server in $(shuf -e ha.pool.sks-keyservers.net \
|
|
hkp://p80.pool.sks-keyservers.net:80 \
|
|
ipv4.pool.sks-keyservers.net \
|
|
keyserver.ubuntu.com \
|
|
keyserver.pgp.com \
|
|
pgp.mit.edu) ; do \
|
|
gpg --keyserver "$server" --recv-keys 595E85A6B1B4779EA4DAAEC70B588DFF0527A9B7 && break || : ; \
|
|
done && \
|
|
gpg --batch --verify /tmp/tini.asc /sbin/tini && \
|
|
rm -rf "$GNUPGHOME" /tmp/tini.asc && \
|
|
chmod +x /sbin/tini && \
|
|
dnf -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
|
|
|
|
ARG MAJOR_VERSION=5.4
|
|
ARG ZBX_VERSION=${MAJOR_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.documentation="https://www.zabbix.com/documentation/${MAJOR_VERSION}/manual/installation/containers" \
|
|
org.opencontainers.image.version="${ZBX_VERSION}" \
|
|
org.opencontainers.image.source="${ZBX_SOURCES}"
|
|
|
|
RUN set -eux && \
|
|
dnf --quiet makecache && \
|
|
dnf -y install --setopt=tsflags=nodocs --setopt=install_weak_deps=False --best \
|
|
autoconf \
|
|
automake \
|
|
pcre-devel \
|
|
libcurl-devel \
|
|
make \
|
|
openssl-devel \
|
|
openldap-devel \
|
|
git \
|
|
gcc && \
|
|
cd /tmp/ && \
|
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
|
zabbix_revision=`git rev-parse --short HEAD` && \
|
|
sed -i "s/{ZABBIX_REVISION}/$zabbix_revision/g" include/version.h && \
|
|
./bootstrap.sh && \
|
|
export CFLAGS="-fPIC -pie -Wl,-z,relro -Wl,-z,now" && \
|
|
./configure \
|
|
--datadir=/usr/lib \
|
|
--libdir=/usr/lib/zabbix \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc/zabbix \
|
|
--prefix=/usr \
|
|
--enable-agent \
|
|
--with-libcurl \
|
|
--with-ldap \
|
|
--with-openssl \
|
|
--enable-ipv6 \
|
|
--silent && \
|
|
make -j"$(nproc)" -s && \
|
|
cp /tmp/zabbix-${ZBX_VERSION}/src/zabbix_agent/zabbix_agentd /usr/sbin/zabbix_agentd && \
|
|
cp /tmp/zabbix-${ZBX_VERSION}/src/zabbix_get/zabbix_get /usr/bin/zabbix_get && \
|
|
cp /tmp/zabbix-${ZBX_VERSION}/src/zabbix_sender/zabbix_sender /usr/bin/zabbix_sender && \
|
|
cp /tmp/zabbix-${ZBX_VERSION}/conf/zabbix_agentd.conf /etc/zabbix/zabbix_agentd.conf && \
|
|
cd /tmp/ && \
|
|
rm -rf /tmp/zabbix-${ZBX_VERSION}/ && \
|
|
dnf -y history undo `dnf -q history | sed -n 3p |column -t | cut -d' ' -f1` && \
|
|
dnf -y clean all && \
|
|
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/ && \
|
|
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 ["/sbin/tini", "--", "/usr/bin/docker-entrypoint.sh"]
|
|
|
|
USER 1997
|
|
|
|
CMD ["/usr/sbin/zabbix_agentd", "--foreground", "-c", "/etc/zabbix/zabbix_agentd.conf"]
|