zabbix-docker/agent2/alpine/Dockerfile

107 lines
3.8 KiB
Docker
Raw Normal View History

2021-06-25 14:05:40 +02:00
FROM alpine:3.14
2019-11-14 06:28:37 +01:00
LABEL org.opencontainers.image.title="Zabbix agent 2" \
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 2 is deployed on a monitoring target to actively monitor local resources and applications" \
org.opencontainers.image.licenses="GPL v2.0"
STOPSIGNAL SIGTERM
RUN set -eux && \
addgroup --system --gid 1995 zabbix && \
adduser --system \
--gecos "Zabbix monitoring system" \
--disabled-password \
--uid 1997 \
--ingroup zabbix \
--shell /sbin/nologin \
--home /var/lib/zabbix/ \
2019-11-14 06:28:37 +01:00
zabbix && \
adduser zabbix root && \
2019-11-14 06:28:37 +01: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 && \
apk add --no-cache --clean-protected \
tini \
2021-04-10 12:38:02 +02:00
tzdata \
2019-11-14 06:28:37 +01:00
bash \
pcre \
coreutils \
iputils && \
rm -rf /var/cache/apk/*
2021-05-17 11:37:01 +02:00
ARG MAJOR_VERSION=6.0
ARG ZBX_VERSION=${MAJOR_VERSION}
2019-11-14 06:28:37 +01:00
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 && \
apk add --no-cache --virtual build-dependencies \
autoconf \
automake \
go \
g++ \
make \
git \
pcre-dev \
2020-05-28 16:43:49 +02:00
openssl-dev \
2020-09-25 11:24:18 +02:00
zlib-dev && \
2019-11-14 06:28:37 +01:00
cd /tmp/ && \
git -c advice.detachedHead=false clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
2019-11-14 06:28:37 +01:00
cd /tmp/zabbix-${ZBX_VERSION} && \
zabbix_revision=`git rev-parse --short HEAD` && \
sed -i "s/{ZABBIX_REVISION}/$zabbix_revision/g" src/go/pkg/version/version.go && \
2019-11-14 06:28:37 +01:00
./bootstrap.sh && \
export CFLAGS="-fPIC -pie -Wl,-z,relro -Wl,-z,now" && \
export GOPATH=/tmp/zabbix-${ZBX_VERSION}/go && \
./configure \
--datadir=/usr/lib \
--libdir=/usr/lib/zabbix \
--prefix=/usr \
--sysconfdir=/etc/zabbix \
--prefix=/usr \
2020-05-28 16:43:49 +02:00
--with-openssl \
2019-11-14 06:28:37 +01:00
--enable-ipv6 \
--enable-agent2 \
--enable-agent \
--silent && \
make -j"$(nproc)" -s && \
2020-02-20 15:39:23 +01:00
cp /tmp/zabbix-${ZBX_VERSION}/src/go/bin/zabbix_agent2 /usr/sbin/zabbix_agent2 && \
2019-11-14 06:28:37 +01:00
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 && \
2020-02-20 15:39:23 +01:00
cp /tmp/zabbix-${ZBX_VERSION}/src/go/conf/zabbix_agent2.conf /etc/zabbix/zabbix_agent2.conf && \
2020-09-25 11:24:18 +02:00
strip /usr/sbin/zabbix_agent2 && \
strip /usr/bin/zabbix_get && \
strip /usr/bin/zabbix_sender && \
2019-11-14 06:28:37 +01:00
cd /tmp/ && \
rm -rf /tmp/zabbix-${ZBX_VERSION}/ && \
2020-04-25 23:23:08 +02:00
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/ && \
2019-11-14 06:28:37 +01:00
apk del --purge --no-network \
build-dependencies && \
rm -rf /var/cache/apk/*
EXPOSE 10050/TCP 31999/TCP
2019-11-14 06:28:37 +01:00
WORKDIR /var/lib/zabbix
VOLUME ["/var/lib/zabbix/enc"]
COPY ["docker-entrypoint.sh", "/usr/bin/"]
ENTRYPOINT ["/sbin/tini", "--", "/usr/bin/docker-entrypoint.sh"]
2020-04-25 23:23:08 +02:00
USER 1997
2019-11-14 06:28:37 +01:00
CMD ["/usr/sbin/zabbix_agent2", "--foreground", "-c", "/etc/zabbix/zabbix_agent2.conf"]