mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-11-15 20:34:48 +01:00
93 lines
3.5 KiB
Docker
93 lines
3.5 KiB
Docker
FROM centos:centos8
|
|
|
|
LABEL org.opencontainers.image.title="Zabbix web service" \
|
|
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 web servce for performing various tasks using headless web browser" \
|
|
org.opencontainers.image.licenses="GPL v2.0"
|
|
|
|
STOPSIGNAL SIGTERM
|
|
|
|
RUN set -eux && \
|
|
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 /var/lib/zabbix/enc && \
|
|
dnf --quiet makecache && \
|
|
dnf -y install --setopt=tsflags=nodocs --setopt=install_weak_deps=False --best \
|
|
epel-release && \
|
|
dnf -y install --setopt=tsflags=nodocs --setopt=install_weak_deps=False --best \
|
|
chromium \
|
|
openssl-libs \
|
|
zlib && \
|
|
dnf -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
|
|
|
|
ARG MAJOR_VERSION=6.0
|
|
ARG ZBX_VERSION=${MAJOR_VERSION}
|
|
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 && \
|
|
dnf --quiet makecache && \
|
|
dnf -y install --setopt=tsflags=nodocs --setopt=install_weak_deps=False --best \
|
|
autoconf \
|
|
automake \
|
|
gcc \
|
|
make \
|
|
golang \
|
|
git && \
|
|
cd /tmp/ && \
|
|
git -c advice.detachedHead=false clone ${ZBX_SOURCES} --branch master --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" src/go/pkg/version/version.go && \
|
|
./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-webservice \
|
|
--silent && \
|
|
make -j"$(nproc)" -s && \
|
|
cp /tmp/zabbix-${ZBX_VERSION}/src/go/bin/zabbix_web_service /usr/sbin/zabbix_web_service && \
|
|
cp /tmp/zabbix-${ZBX_VERSION}/src/go/conf/zabbix_web_service.conf /etc/zabbix/zabbix_web_service.conf && \
|
|
cd /tmp/ && \
|
|
rm -rf /tmp/zabbix-${ZBX_VERSION}/ && \
|
|
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/ && \
|
|
dnf -y history undo `dnf -q history | sed -n 3p |column -t | cut -d' ' -f1` && \
|
|
dnf -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 10053/TCP
|
|
|
|
WORKDIR /var/lib/zabbix
|
|
|
|
COPY ["docker-entrypoint.sh", "/usr/bin/"]
|
|
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|
|
|
|
USER 1997
|
|
|
|
CMD ["/usr/sbin/zabbix_web_service", "-c", "/etc/zabbix/zabbix_web_service.conf"]
|