zabbix-docker/agent/alpine/Dockerfile

102 lines
3.5 KiB
Docker
Raw Normal View History

2020-02-20 17:22:58 +01:00
FROM alpine:3.11
2018-02-18 21:42:44 +01:00
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"
2018-02-18 21:42:44 +01:00
STOPSIGNAL SIGTERM
2019-05-30 20:21:16 +02:00
RUN set -eux && \
2020-04-25 19:31:44 +02:00
addgroup -S -g 1995 zabbix && \
2016-08-03 10:09:49 +02:00
adduser -S \
2020-04-25 19:31:44 +02:00
-D -G zabbix -G root \
-u 1997 \
2016-08-03 10:09:49 +02:00
-h /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 && \
apk add --no-cache --clean-protected \
2019-04-09 21:43:56 +02:00
tini \
2016-08-03 10:09:49 +02:00
bash \
2018-06-01 05:35:53 +02:00
coreutils \
2018-02-18 21:42:44 +01:00
iputils \
2019-07-18 14:27:39 +02:00
pcre \
2019-07-18 14:25:12 +02:00
libcurl \
libldap && \
2016-08-03 10:09:49 +02:00
rm -rf /var/cache/apk/*
2019-11-14 06:28:37 +01:00
ARG MAJOR_VERSION=5.0
2020-05-28 12:53:43 +02:00
ARG ZBX_VERSION=${MAJOR_VERSION}.1
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 \
2019-07-18 14:25:12 +02:00
curl-dev \
openssl-dev \
openldap-dev \
g++ \
pcre-dev \
make \
git \
coreutils && \
cd /tmp/ && \
2020-05-12 09:08:00 +02:00
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --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 \
2019-07-18 14:25:12 +02:00
--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}/ && \
2020-04-25 19:31:44 +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/ && \
apk del --purge --no-network \
build-dependencies && \
rm -rf /var/cache/apk/*
2016-08-03 10:09:49 +02:00
EXPOSE 10050/TCP
WORKDIR /var/lib/zabbix
2020-04-28 20:22:44 +02:00
VOLUME ["/etc/zabbix/zabbix_agentd.d", "/var/lib/zabbix/enc", "/var/lib/zabbix/modules"]
2016-08-03 10:09:49 +02:00
2018-02-18 21:42:44 +01:00
COPY ["docker-entrypoint.sh", "/usr/bin/"]
2016-08-03 10:09:49 +02:00
2019-05-30 15:20:06 +02:00
ENTRYPOINT ["/sbin/tini", "--", "/usr/bin/docker-entrypoint.sh"]
2020-04-25 19:31:44 +02:00
USER 1997
CMD ["/usr/sbin/zabbix_agentd", "--foreground", "-c", "/etc/zabbix/zabbix_agentd.conf"]