Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled
52 lines
2.4 KiB
Docker
52 lines
2.4 KiB
Docker
# Usage:
|
|
#
|
|
# https://wiki.alpinelinux.org/wiki/Setting_up_Zabbix
|
|
# docker build --force-rm -t zabbix-web .
|
|
# docker run -d --name zabbix-web -h zabbix-web -p 80:80 zabbix-web
|
|
#
|
|
FROM alpine:3.4
|
|
LABEL maintainer="phithon <root@leavesongs.com>"
|
|
|
|
ARG APK_FLAGS_COMMON="-q"
|
|
ARG APK_FLAGS_PERSISTANT="${APK_FLAGS_COMMON} --clean-protected --no-cache"
|
|
ARG APK_FLAGS_DEV="${APK_FLAGS_COMMON} --no-cache"
|
|
ARG DB_TYPE=mysql
|
|
ARG ZBX_SOURCES="http://sourceforge.net/projects/zabbix/files/ZABBIX%20Latest%20Stable/3.0.3/zabbix-3.0.3.tar.gz/download"
|
|
|
|
ENV LANG=en_US.UTF-8 \
|
|
TERM=xterm \
|
|
ZBX_SOURCES=${ZBX_SOURCES} \
|
|
ZBX_SRV_HOST=127.0.0.1 \
|
|
ZBX_SRV_PORT=10051 \
|
|
ZBX_SRV_NAME= \
|
|
DB_TYPE=${DB_TYPE}
|
|
|
|
RUN apk update \
|
|
&& apk add ${APK_FLAGS_PERSISTANT} mariadb-client php5-apache2 php5-sockets php5-gd php5-gettext php5-bcmath php5-ctype php5-xmlreader php5-json php5-ldap php5-mysqli ttf-dejavu \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
RUN apk add ${APK_FLAGS_DEV} --virtual build-deps tzdata bash curl tar coreutils gettext \
|
|
&& rm -f /etc/localtime && ln -s /usr/share/zoneinfo/UTC /etc/localtime \
|
|
&& mkdir -p /tmp/zabbix \
|
|
&& curl -#SL "${ZBX_SOURCES}" | tar -xz -C /tmp/zabbix --strip-components 1 \
|
|
&& mkdir -p /usr/share/webapps/ \
|
|
&& cp -rp /tmp/zabbix/frontends/php /usr/share/webapps/zabbix \
|
|
&& /usr/share/webapps/zabbix/locale/make_mo.sh \
|
|
&& rm /usr/share/webapps/zabbix/fonts/DejaVuSans.ttf \
|
|
&& ln -s /usr/share/fonts/ttf-dejavu/DejaVuSans.ttf /usr/share/webapps/zabbix/fonts/DejaVuSans.ttf \
|
|
&& DATE=`date +%Y-%m-%d` \
|
|
&& sed -e "s/ZABBIX_VERSION.*'\(.*\)'/ZABBIX_VERSION', '\1 ($DATE)'/g" \
|
|
-e "s/ZABBIX_API_VERSION.*'\(.*\)'/ZABBIX_API_VERSION', '\1 ($DATE)'/g" -i /usr/share/webapps/zabbix/include/defines.inc.php \
|
|
&& cp /usr/share/webapps/zabbix/conf/zabbix.conf.php.example /usr/share/webapps/zabbix/conf/zabbix.conf.php \
|
|
&& apk del ${APK_FLAGS_COMMON} --purge build-deps \
|
|
&& rm -rf /var/cache/apk/* /tmp/zabbix/ \
|
|
&& mkdir /run/apache2 && chown apache:apache -R /run/apache2
|
|
|
|
COPY docker-entrypoint.sh /
|
|
COPY conf/apache.conf /etc/apache2/conf.d/
|
|
COPY conf/99-zabbix.ini /etc/php5/conf.d/
|
|
|
|
EXPOSE 80/TCP
|
|
CMD ["/docker-entrypoint.sh"]
|
|
|
|
HEALTHCHECK --interval=15s --timeout=3s --retries=3 CMD wget -U Docker-HealthCheck -Y off -O /dev/null http://localhost:80 || exit 1 |