mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-11-15 04:14:24 +01:00
97 lines
3.3 KiB
Docker
97 lines
3.3 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=svn://svn.zabbix.com/tags/${ZBX_VERSION}/
|
|
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 \
|
|
subversion && \
|
|
cd /tmp/ && \
|
|
svn --quiet export ${ZBX_SOURCES}/frontends/php/ zabbix && \
|
|
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=mysql 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 MySQL 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}-${ZBX_DB_TYPE} --link mysql-server:mysql --link zabbix-server:zabbix-server -p 80:80 -d zabbix-web-${ZBX_OPT_TYPE}-${ZBX_DB_TYPE}: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 \
|
|
dejavu-sans-fonts \
|
|
httpd \
|
|
mariadb \
|
|
php \
|
|
php-bcmath \
|
|
php-gd \
|
|
php-ldap \
|
|
php-mbstring \
|
|
php-mysql \
|
|
php-xml && \
|
|
ln -s /usr/share/fonts/ttf-dejavu/DejaVuSans.ttf /usr/share/zabbix/fonts/graphfont.ttf && \
|
|
yum ${YUM_FLAGS_PERSISTANT} 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"]
|