mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-11-16 04:43:49 +01:00
106 lines
3.8 KiB
Docker
106 lines
3.8 KiB
Docker
FROM centos:centos7 as builder
|
|
|
|
ARG YUM_FLAGS_COMMON="-y"
|
|
ARG YUM_FLAGS_DEV="${YUM_FLAGS_COMMON}"
|
|
|
|
ARG MAJOR_VERSION=master
|
|
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}
|
|
|
|
COPY ["conf/tmp/font-config", "/tmp/font-config"]
|
|
|
|
RUN yum --quiet makecache && \
|
|
yum ${YUM_FLAGS_DEV} install \
|
|
gettext \
|
|
patch \
|
|
git && \
|
|
cd /tmp/ && \
|
|
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
|
mkdir /tmp/zabbix/ && \
|
|
cp -R /tmp/zabbix-${ZBX_VERSION}/frontends/php/* /tmp/zabbix/ && \
|
|
rm -rf /tmp/zabbix-${ZBX_VERSION}/ && \
|
|
cd /tmp/zabbix/ && \
|
|
patch -p3 < /tmp/font-config && \
|
|
rm /tmp/font-config && \
|
|
rm -f conf/zabbix.conf.php && \
|
|
rm -rf tests && \
|
|
rm /tmp/zabbix/fonts/DejaVuSans.ttf && \
|
|
./locale/make_mo.sh
|
|
|
|
FROM centos:centos7
|
|
LABEL maintainer="Alexey Pustovalov <alexey.pustovalov@zabbix.com>"
|
|
|
|
ARG BUILD_DATE
|
|
ARG VCS_REF
|
|
|
|
ARG YUM_FLAGS_COMMON="-y"
|
|
ARG YUM_FLAGS_PERSISTENT="${YUM_FLAGS_COMMON}"
|
|
|
|
ARG MAJOR_VERSION=master
|
|
ARG ZBX_VERSION=${MAJOR_VERSION}
|
|
ARG ZBX_SOURCES=svn://svn.zabbix.com/tags/${ZBX_VERSION}/
|
|
ENV TERM=xterm ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES} \
|
|
ZBX_TYPE=frontend ZBX_DB_TYPE=postgresql ZBX_OPT_TYPE=apache
|
|
|
|
LABEL org.label-schema.name="zabbix-web-${ZBX_OPT_TYPE}-${ZBX_DB_TYPE}-centos" \
|
|
org.label-schema.vendor="Zabbix LLC" \
|
|
org.label-schema.url="https://zabbix.com/" \
|
|
org.label-schema.description="Zabbix web-interface based on Apache2 web server with PostgreSQL database support" \
|
|
org.label-schema.vcs-ref="${VCS_REF}" \
|
|
org.label-schema.build-date="${BUILD_DATE}" \
|
|
org.label-schema.schema-version="1.0" \
|
|
org.label-schema.license="GPL v2.0" \
|
|
org.label-schema.usage="https://www.zabbix.com/documentation/${MAJOR_VERSION}/manual/installation/containers" \
|
|
org.label-schema.version="${ZBX_VERSION}" \
|
|
org.label-schema.vcs-url="${ZBX_SOURCES}" \
|
|
org.label-schema.docker.cmd="docker run --name zabbix-web-${ZBX_OPT_TYPE}-pgsql --link postgres-server:postgres --link zabbix-server:zabbix-server -p 80:80 -d zabbix-web-${ZBX_OPT_TYPE}-pgsql:centos-${ZBX_VERSION}"
|
|
|
|
STOPSIGNAL SIGTERM
|
|
|
|
COPY --from=builder /tmp/zabbix/ /usr/share/zabbix/
|
|
|
|
RUN groupadd --system zabbix && \
|
|
adduser -r --shell /sbin/nologin \
|
|
-g zabbix \
|
|
-d /var/lib/zabbix/ \
|
|
zabbix && \
|
|
mkdir -p /etc/zabbix && \
|
|
mkdir -p /etc/zabbix/web && \
|
|
chown --quiet -R zabbix:root /etc/zabbix && \
|
|
yum ${YUM_FLAGS_COMMON} makecache && \
|
|
yum ${YUM_FLAGS_PERSISTENT} install epel-release && \
|
|
yum ${YUM_FLAGS_PERSISTENT} install \
|
|
dejavu-sans-fonts \
|
|
curl \
|
|
httpd \
|
|
mod_ssl \
|
|
php \
|
|
php-bcmath \
|
|
php-gd \
|
|
php-ldap \
|
|
php-mbstring \
|
|
php-pgsql \
|
|
php-xml \
|
|
postgresql && \
|
|
ln -s /usr/share/fonts/dejavu/DejaVuSans.ttf /usr/share/zabbix/fonts/graphfont.ttf && \
|
|
cat /usr/share/zabbix/include/locales.inc.php | grep display | grep true | awk '{$1=$1};1' | \
|
|
cut -d"'" -f 2 | sort | \
|
|
xargs -I '{}' bash -c 'echo "{}" && localedef -c -i {} -f UTF-8 {}.UTF-8 2>/dev/null' && \
|
|
yum ${YUM_FLAGS_PERSISTENT} clean all && \
|
|
rm -rf /var/cache/yum/
|
|
|
|
EXPOSE 80/TCP 443/TCP
|
|
|
|
WORKDIR /usr/share/zabbix
|
|
|
|
VOLUME ["/etc/ssl/apache2"]
|
|
|
|
COPY ["conf/etc/zabbix/apache.conf", "/etc/zabbix/"]
|
|
COPY ["conf/etc/zabbix/apache_ssl.conf", "/etc/zabbix/"]
|
|
COPY ["conf/etc/zabbix/web/zabbix.conf.php", "/etc/zabbix/web/"]
|
|
COPY ["conf/etc/php.d/99-zabbix.ini", "/etc/php.d/"]
|
|
COPY ["docker-entrypoint.sh", "/usr/bin/"]
|
|
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|