mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-11-22 15:53:35 +01:00
136 lines
5.3 KiB
Docker
136 lines
5.3 KiB
Docker
# syntax=docker/dockerfile:1
|
|
ARG MAJOR_VERSION=6.0
|
|
ARG RELEASE=
|
|
ARG ZBX_VERSION=${MAJOR_VERSION}
|
|
ARG BUILD_BASE_IMAGE=zabbix-build-mysql:rhel-${ZBX_VERSION}
|
|
|
|
FROM ${BUILD_BASE_IMAGE} as builder
|
|
|
|
FROM registry.access.redhat.com/ubi8/ubi-minimal
|
|
|
|
ARG MAJOR_VERSION
|
|
ARG RELEASE
|
|
ARG ZBX_VERSION
|
|
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
|
|
|
|
ENV TERM=xterm \
|
|
ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES} \
|
|
MIBDIRS=/usr/share/snmp/mibs:/var/lib/zabbix/mibs MIBS=+ALL
|
|
|
|
LABEL description="Zabbix server with MySQL database support" \
|
|
maintainer="alexey.pustovalov@zabbix.com" \
|
|
name="zabbix/zabbix-server-mysql-trunk" \
|
|
release="${RELEASE}" \
|
|
run="docker run --name zabbix-server --link mysql-server:mysql-server -p 10051:10051 -d registry.connect.redhat.com/zabbix/zabbix-server-mysql-trunk:${ZBX_VERSION}" \
|
|
summary="Zabbix server (MySQL)" \
|
|
url="https://www.zabbix.com/" \
|
|
vendor="Zabbix LLC" \
|
|
version="${MAJOR_VERSION}" \
|
|
io.k8s.description="Zabbix server with MySQL database support" \
|
|
io.k8s.display-name="Zabbix server (MySQL)" \
|
|
io.openshift.expose-services="10051:10051" \
|
|
io.openshift.tags="zabbix,zabbix-server,mysql" \
|
|
org.label-schema.build-date="${BUILD_DATE}" \
|
|
org.label-schema.description="Zabbix server with MySQL database support" \
|
|
org.label-schema.docker.cmd="docker run --name zabbix-server --link mysql-server:mysql-server -p 10051:10051 -d registry.connect.redhat.com/zabbix/zabbix-server-mysql-trunk:${ZBX_VERSION}" \
|
|
org.label-schema.license="GPL v2.0" \
|
|
org.label-schema.name="zabbix-server-mysql-rhel" \
|
|
org.label-schema.schema-version="1.0" \
|
|
org.label-schema.url="https://zabbix.com/" \
|
|
org.label-schema.usage="https://www.zabbix.com/documentation/${MAJOR_VERSION}/manual/installation/containers" \
|
|
org.label-schema.vcs-ref="${VCS_REF}" \
|
|
org.label-schema.vcs-url="${ZBX_SOURCES}" \
|
|
org.label-schema.vendor="Zabbix LLC" \
|
|
org.label-schema.version="${ZBX_VERSION}"
|
|
|
|
STOPSIGNAL SIGTERM
|
|
|
|
COPY ["licenses", "/licenses"]
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/src/zabbix_server/zabbix_server", "/usr/sbin/zabbix_server"]
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/src/zabbix_get/zabbix_get", "/usr/bin/zabbix_get"]
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/src/zabbix_sender/zabbix_sender", "/usr/bin/zabbix_sender"]
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/conf/zabbix_server.conf", "/etc/zabbix/zabbix_server.conf"]
|
|
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/database/mysql/create_server.sql.gz", "/usr/share/doc/zabbix-server-mysql/create.sql.gz"]
|
|
|
|
RUN set -eux && \
|
|
INSTALL_PKGS="bash \
|
|
tini \
|
|
fping \
|
|
shadow-utils \
|
|
tzdata \
|
|
iputils \
|
|
libcurl \
|
|
libevent \
|
|
openldap \
|
|
libssh \
|
|
libxml2 \
|
|
mysql \
|
|
mysql-libs \
|
|
net-snmp-agent-libs \
|
|
OpenIPMI-libs \
|
|
pcre2 \
|
|
unixODBC" && \
|
|
curl -sSL -o /tmp/epel-release-latest-8.noarch.rpm https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm && \
|
|
rpm -ivh /tmp/epel-release-latest-8.noarch.rpm && \
|
|
rm -rf /tmp/epel-release-latest-8.noarch.rpm && \
|
|
microdnf -y module enable mysql && \
|
|
microdnf -y install \
|
|
--disablerepo "*" \
|
|
--enablerepo "ubi-8-baseos" \
|
|
--enablerepo "ubi-8-appstream" \
|
|
--enablerepo "rhel-8-for-x86_64-baseos-rpms" \
|
|
--enablerepo "rhel-8-for-x86_64-appstream-rpms" \
|
|
--enablerepo "epel" \
|
|
--setopt=install_weak_deps=0 \
|
|
--best \
|
|
--setopt=tsflags=nodocs \
|
|
${INSTALL_PKGS} && \
|
|
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 /var/lib/zabbix && \
|
|
mkdir -p /usr/lib/zabbix/alertscripts && \
|
|
mkdir -p /var/lib/zabbix/enc && \
|
|
mkdir -p /var/lib/zabbix/export && \
|
|
mkdir -p /usr/lib/zabbix/externalscripts && \
|
|
mkdir -p /var/lib/zabbix/mibs && \
|
|
mkdir -p /var/lib/zabbix/modules && \
|
|
mkdir -p /var/lib/zabbix/snmptraps && \
|
|
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 && \
|
|
mkdir -p /usr/share/doc/zabbix-server-mysql && \
|
|
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/ && \
|
|
microdnf -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
|
|
|
|
EXPOSE 10051/TCP
|
|
|
|
WORKDIR /var/lib/zabbix
|
|
|
|
VOLUME ["/var/lib/zabbix/snmptraps", "/var/lib/zabbix/export"]
|
|
|
|
COPY ["docker-entrypoint.sh", "/usr/bin/"]
|
|
|
|
ENTRYPOINT ["/usr/bin/tini", "--", "/usr/bin/docker-entrypoint.sh"]
|
|
|
|
USER 1997
|
|
|
|
CMD ["/usr/sbin/zabbix_server", "--foreground", "-c", "/etc/zabbix/zabbix_server.conf"]
|