zabbix-docker/proxy-mysql/alpine/Dockerfile

135 lines
4.6 KiB
Docker
Raw Normal View History

2019-07-13 15:53:27 +02:00
FROM alpine:3.10
2018-02-18 21:42:44 +01:00
LABEL org.opencontainers.image.title="Zabbix proxy (MySQL)" \
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 proxy with MySQL database support" \
org.opencontainers.image.licenses="GPL v2.0"
2018-02-18 21:42:44 +01:00
STOPSIGNAL SIGTERM
2016-08-03 10:09:49 +02:00
2019-05-30 20:21:16 +02:00
RUN set -eux && \
addgroup -S -g 1000 zabbix && \
2016-08-03 10:09:49 +02:00
adduser -S \
-D -G zabbix \
-u 999 \
2016-08-03 10:09:49 +02:00
-h /var/lib/zabbix/ \
zabbix && \
2018-02-18 21:42:44 +01:00
mkdir -p /etc/zabbix && \
2016-08-03 10:09:49 +02:00
mkdir -p /var/lib/zabbix && \
mkdir -p /var/lib/zabbix/enc && \
2018-02-18 21:42:44 +01:00
mkdir -p /usr/lib/zabbix/externalscripts && \
mkdir -p /var/lib/zabbix/mibs && \
2016-08-03 10:09:49 +02:00
mkdir -p /var/lib/zabbix/modules && \
2018-02-18 21:42:44 +01:00
mkdir -p /var/lib/zabbix/snmptraps && \
2016-08-03 10:09:49 +02:00
mkdir -p /var/lib/zabbix/ssh_keys && \
mkdir -p /var/lib/zabbix/ssl && \
mkdir -p /var/lib/zabbix/ssl/certs && \
mkdir -p /var/lib/zabbix/ssl/keys && \
mkdir -p /var/lib/zabbix/ssl/ssl_ca && \
chown --quiet -R zabbix:root /var/lib/zabbix && \
mkdir -p /usr/share/doc/zabbix-proxy-mysql && \
apk add --clean-protected --no-cache \
2019-04-09 21:43:56 +02:00
tini \
2016-08-03 10:09:49 +02:00
bash \
2018-02-18 21:42:44 +01:00
iputils \
libcurl \
2018-02-18 01:20:18 +01:00
libevent \
2018-02-18 21:42:44 +01:00
libldap \
libssh2 \
2016-08-03 10:09:49 +02:00
libxml2 \
2018-02-18 21:42:44 +01:00
mariadb-client \
2019-04-09 22:31:33 +02:00
mariadb-connector-c \
2016-08-03 10:09:49 +02:00
net-snmp-agent-libs \
openipmi-libs \
2018-02-18 01:20:18 +01:00
pcre \
2018-02-18 21:42:44 +01:00
unixodbc \
fping && \
2016-08-03 10:09:49 +02:00
rm -rf /var/cache/apk/*
2019-05-14 10:06:13 +02:00
ARG MAJOR_VERSION=4.4
ARG ZBX_VERSION=${MAJOR_VERSION}
2019-05-10 16:11:07 +02:00
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2016-08-03 10:09:49 +02:00
ENV TERM=xterm ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES} \
MIBDIRS=/usr/share/snmp/mibs:/var/lib/zabbix/mibs MIBS=+ALL
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}"
2018-02-18 21:42:44 +01:00
2019-05-30 20:21:16 +02:00
RUN set -eux && \
apk add --no-cache --virtual build-dependencies \
2016-08-03 10:09:49 +02:00
autoconf \
2018-02-18 21:42:44 +01:00
automake \
coreutils \
curl-dev \
2018-02-18 01:20:18 +01:00
libevent-dev \
g++ \
git \
make \
2018-02-18 21:42:44 +01:00
libssh2-dev \
2016-08-03 10:09:49 +02:00
libxml2-dev \
2018-02-18 21:42:44 +01:00
mysql-dev \
2016-08-03 10:09:49 +02:00
net-snmp-dev \
openipmi-dev \
openldap-dev \
2018-02-18 01:20:18 +01:00
pcre-dev \
unixodbc-dev && \
2016-08-03 10:09:49 +02:00
cd /tmp/ && \
2019-05-14 10:06:13 +02:00
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
2016-08-03 10:09:49 +02:00
cd /tmp/zabbix-${ZBX_VERSION} && \
2019-05-10 16:11:07 +02:00
zabbix_revision=`git rev-parse --short HEAD` && \
2016-08-03 10:09:49 +02:00
sed -i "s/{ZABBIX_REVISION}/$zabbix_revision/g" include/version.h && \
./bootstrap.sh && \
export CFLAGS="-fPIC -pie -Wl,-z,relro -Wl,-z,now" && \
2016-08-03 10:09:49 +02:00
./configure \
--datadir=/usr/lib \
2018-02-18 21:42:44 +01:00
--libdir=/usr/lib/zabbix \
--sysconfdir=/etc/zabbix \
--prefix=/usr \
--enable-agent \
--enable-proxy \
--with-mysql \
2016-08-03 10:09:49 +02:00
--with-ldap \
2018-02-18 21:42:44 +01:00
--with-libcurl \
--with-libxml2 \
2016-08-03 10:09:49 +02:00
--with-net-snmp \
--with-openipmi \
2018-02-18 21:42:44 +01:00
--with-openssl \
2016-08-03 10:09:49 +02:00
--with-ssh2 \
--with-unixodbc \
2018-02-18 21:42:44 +01:00
--enable-ipv6 \
--silent && \
make -j"$(nproc)" -s dbschema && \
make -j"$(nproc)" -s && \
cp src/zabbix_proxy/zabbix_proxy /usr/sbin/zabbix_proxy && \
cp src/zabbix_get/zabbix_get /usr/bin/zabbix_get && \
cp src/zabbix_sender/zabbix_sender /usr/bin/zabbix_sender && \
cp conf/zabbix_proxy.conf /etc/zabbix/zabbix_proxy.conf && \
2016-08-03 10:09:49 +02:00
chown --quiet -R zabbix:root /etc/zabbix && \
cat database/mysql/schema.sql > database/mysql/create.sql && \
gzip database/mysql/create.sql && \
cp database/mysql/create.sql.gz /usr/share/doc/zabbix-proxy-mysql/ && \
2016-08-03 10:09:49 +02:00
cd /tmp/ && \
rm -rf /tmp/zabbix-${ZBX_VERSION}/ && \
apk del --purge --no-network \
2016-08-03 10:09:49 +02:00
build-dependencies && \
2019-05-30 20:21:16 +02:00
rm -rf /var/cache/apk/*
2016-08-03 10:09:49 +02:00
2018-02-18 21:42:44 +01:00
EXPOSE 10051/TCP
2016-08-03 10:09:49 +02:00
WORKDIR /var/lib/zabbix
2018-02-18 21:42:44 +01:00
VOLUME ["/usr/lib/zabbix/externalscripts", "/var/lib/zabbix/enc", "/var/lib/zabbix/modules", "/var/lib/zabbix/snmptraps"]
VOLUME ["/var/lib/zabbix/ssh_keys", "/var/lib/zabbix/ssl/certs", "/var/lib/zabbix/ssl/keys", "/var/lib/zabbix/ssl/ssl_ca"]
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:18:29 +02:00
ENTRYPOINT ["/sbin/tini", "--", "/usr/bin/docker-entrypoint.sh"]
USER zabbix
CMD ["/usr/sbin/zabbix_proxy", "--foreground", "-c", "/etc/zabbix/zabbix_proxy.conf"]