2021-09-13 00:06:51 +02:00
|
|
|
# syntax=docker/dockerfile:1
|
2022-07-05 14:46:20 +02:00
|
|
|
ARG MAJOR_VERSION=6.4
|
2024-07-15 15:49:53 +02:00
|
|
|
ARG ZBX_VERSION=${MAJOR_VERSION}.17
|
2021-09-13 00:06:51 +02:00
|
|
|
ARG BUILD_BASE_IMAGE=zabbix-build-mysql:alpine-${ZBX_VERSION}
|
|
|
|
|
2024-02-13 17:07:53 +01:00
|
|
|
FROM ${BUILD_BASE_IMAGE} AS builder
|
2021-09-13 00:06:51 +02:00
|
|
|
|
2024-05-23 08:27:12 +02:00
|
|
|
FROM alpine:3.20
|
2018-02-18 21:42:44 +01:00
|
|
|
|
2021-09-13 00:06:51 +02:00
|
|
|
ARG MAJOR_VERSION
|
|
|
|
ARG ZBX_VERSION
|
2021-10-16 17:49:19 +02:00
|
|
|
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
|
2021-09-13 00:06:51 +02:00
|
|
|
|
2021-10-16 17:49:19 +02:00
|
|
|
ENV TERM=xterm \
|
|
|
|
ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES} \
|
2024-01-18 16:19:02 +01:00
|
|
|
MIBDIRS=/usr/share/snmp/mibs:/var/lib/zabbix/mibs MIBS=+ALL \
|
|
|
|
NMAP_PRIVILEGED=""
|
2021-09-13 00:06:51 +02:00
|
|
|
|
2021-10-16 17:49:19 +02:00
|
|
|
LABEL org.opencontainers.image.authors="Alexey Pustovalov <alexey.pustovalov@zabbix.com>" \
|
2019-09-05 19:04:42 +02:00
|
|
|
org.opencontainers.image.description="Zabbix proxy with MySQL database support" \
|
2021-09-13 00:06:51 +02:00
|
|
|
org.opencontainers.image.documentation="https://www.zabbix.com/documentation/${MAJOR_VERSION}/manual/installation/containers" \
|
2021-10-16 17:49:19 +02:00
|
|
|
org.opencontainers.image.licenses="GPL v2.0" \
|
|
|
|
org.opencontainers.image.source="${ZBX_SOURCES}" \
|
|
|
|
org.opencontainers.image.title="Zabbix proxy (MySQL)" \
|
|
|
|
org.opencontainers.image.url="https://zabbix.com/" \
|
2024-05-21 12:45:53 +02:00
|
|
|
org.opencontainers.image.vendor="Zabbix SIA" \
|
2021-10-16 17:49:19 +02:00
|
|
|
org.opencontainers.image.version="${ZBX_VERSION}"
|
2018-02-18 21:42:44 +01:00
|
|
|
|
|
|
|
STOPSIGNAL SIGTERM
|
2016-08-03 10:09:49 +02:00
|
|
|
|
2024-06-01 08:10:31 +02:00
|
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}-output/proxy/sbin/zabbix_proxy", "/usr/sbin/zabbix_proxy"]
|
|
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}-output/general/bin/*", "/usr/bin/"]
|
|
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}-output/proxy/conf/", "/etc/zabbix/"]
|
|
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}-output/proxy/database/mysql/", "/usr/share/doc/zabbix-proxy-mysql/"]
|
2021-09-13 00:06:51 +02:00
|
|
|
|
2019-05-30 20:21:16 +02:00
|
|
|
RUN set -eux && \
|
2021-10-16 17:49:19 +02:00
|
|
|
INSTALL_PKGS="bash \
|
|
|
|
tini \
|
2024-03-22 06:53:18 +01:00
|
|
|
tzdata \
|
2022-07-20 16:37:00 +02:00
|
|
|
traceroute \
|
|
|
|
nmap \
|
2021-10-16 17:49:19 +02:00
|
|
|
iputils \
|
2024-01-18 16:19:02 +01:00
|
|
|
libcap \
|
2021-10-16 17:49:19 +02:00
|
|
|
libcurl \
|
|
|
|
libevent \
|
|
|
|
libldap \
|
|
|
|
libssh \
|
|
|
|
libxml2 \
|
|
|
|
mariadb-client \
|
|
|
|
mariadb-connector-c \
|
|
|
|
net-snmp-agent-libs \
|
|
|
|
openipmi-libs \
|
2022-01-22 13:44:37 +01:00
|
|
|
pcre2 \
|
2021-10-16 17:49:19 +02:00
|
|
|
unixodbc \
|
2024-02-01 10:02:34 +01:00
|
|
|
gzip \
|
2024-03-24 14:42:53 +01:00
|
|
|
fping \
|
|
|
|
zlib" && \
|
2021-10-16 17:49:19 +02:00
|
|
|
apk add \
|
|
|
|
--no-cache \
|
|
|
|
--clean-protected \
|
|
|
|
${INSTALL_PKGS} && \
|
|
|
|
addgroup \
|
|
|
|
--system \
|
|
|
|
--gid 1995 \
|
|
|
|
zabbix && \
|
|
|
|
adduser \
|
|
|
|
--system \
|
2020-12-19 17:42:48 +01:00
|
|
|
--gecos "Zabbix monitoring system" \
|
|
|
|
--disabled-password \
|
|
|
|
--uid 1997 \
|
|
|
|
--ingroup zabbix \
|
|
|
|
--shell /sbin/nologin \
|
|
|
|
--home /var/lib/zabbix/ \
|
2016-08-03 10:09:49 +02:00
|
|
|
zabbix && \
|
2024-01-18 16:19:02 +01:00
|
|
|
chgrp zabbix /usr/bin/nmap && \
|
|
|
|
setcap cap_net_raw+eip /usr/bin/nmap && \
|
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 && \
|
2021-10-16 17:49:19 +02:00
|
|
|
mkdir -p /usr/lib/zabbix/externalscripts && \
|
2018-02-18 21:42:44 +01:00
|
|
|
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 && \
|
2019-09-05 19:04:42 +02:00
|
|
|
mkdir -p /usr/share/doc/zabbix-proxy-mysql && \
|
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/ && \
|
2024-02-18 15:27:03 +01:00
|
|
|
chmod -R g=u /etc/zabbix/ /var/lib/zabbix/
|
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
|
|
|
|
|
2020-07-13 23:43:32 +02:00
|
|
|
VOLUME ["/var/lib/zabbix/snmptraps"]
|
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"]
|
2019-10-03 16:08:57 +02:00
|
|
|
|
2020-04-25 19:31:44 +02:00
|
|
|
USER 1997
|
2019-10-03 16:08:57 +02:00
|
|
|
|
|
|
|
CMD ["/usr/sbin/zabbix_proxy", "--foreground", "-c", "/etc/zabbix/zabbix_proxy.conf"]
|