mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-11-23 08:13:32 +01:00
Removed multistage building from Alpine images
This commit is contained in:
parent
9cdf315f66
commit
55f384bf59
@ -1,13 +1,56 @@
|
|||||||
FROM alpine:3.9 as builder
|
FROM alpine:3.9
|
||||||
|
LABEL maintainer="Alexey Pustovalov <alexey.pustovalov@zabbix.com>"
|
||||||
|
|
||||||
|
ARG BUILD_DATE
|
||||||
|
ARG VCS_REF
|
||||||
|
|
||||||
ARG APK_FLAGS_COMMON=""
|
ARG APK_FLAGS_COMMON=""
|
||||||
|
ARG APK_FLAGS_PERSISTENT="${APK_FLAGS_COMMON} --clean-protected --no-cache"
|
||||||
ARG APK_FLAGS_DEV="${APK_FLAGS_COMMON} --no-cache"
|
ARG APK_FLAGS_DEV="${APK_FLAGS_COMMON} --no-cache"
|
||||||
|
ENV TERM=xterm ZBX_TYPE=agent ZBX_DB_TYPE=none ZBX_OPT_TYPE=none
|
||||||
|
|
||||||
|
|
||||||
|
LABEL org.label-schema.name="zabbix-${ZBX_TYPE}-alpine" \
|
||||||
|
org.label-schema.vendor="Zabbix LLC" \
|
||||||
|
org.label-schema.url="https://zabbix.com/" \
|
||||||
|
org.label-schema.description="Zabbix agent is deployed on a monitoring target to actively monitor local resources and applications" \
|
||||||
|
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"
|
||||||
|
|
||||||
|
STOPSIGNAL SIGTERM
|
||||||
|
|
||||||
|
RUN set -eux && \
|
||||||
|
addgroup zabbix && \
|
||||||
|
adduser -S \
|
||||||
|
-D -G zabbix \
|
||||||
|
-h /var/lib/zabbix/ \
|
||||||
|
zabbix && \
|
||||||
|
mkdir -p /etc/zabbix && \
|
||||||
|
mkdir -p /etc/zabbix/zabbix_agentd.d && \
|
||||||
|
mkdir -p /var/lib/zabbix && \
|
||||||
|
mkdir -p /var/lib/zabbix/enc && \
|
||||||
|
mkdir -p /var/lib/zabbix/modules && \
|
||||||
|
chown --quiet -R zabbix:root /var/lib/zabbix && \
|
||||||
|
apk update && \
|
||||||
|
apk add ${APK_FLAGS_PERSISTENT} \
|
||||||
|
tini \
|
||||||
|
bash \
|
||||||
|
coreutils \
|
||||||
|
iputils \
|
||||||
|
libldap && \
|
||||||
|
rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
ARG MAJOR_VERSION=master
|
ARG MAJOR_VERSION=master
|
||||||
ARG ZBX_VERSION=${MAJOR_VERSION}
|
ARG ZBX_VERSION=${MAJOR_VERSION}
|
||||||
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
|
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
|
||||||
ENV TERM=xterm ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES} \
|
ENV ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES}
|
||||||
ZBX_TYPE=agent
|
|
||||||
|
LABEL 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-${ZBX_TYPE} --link zabbix-server:zabbix-server -p 10050:10050 -d zabbix-${ZBX_TYPE}:alpine-${ZBX_VERSION}"
|
||||||
|
|
||||||
RUN set -eux && \
|
RUN set -eux && \
|
||||||
apk update && \
|
apk update && \
|
||||||
@ -37,62 +80,15 @@ RUN set -eux && \
|
|||||||
--with-openssl \
|
--with-openssl \
|
||||||
--enable-ipv6 \
|
--enable-ipv6 \
|
||||||
--silent && \
|
--silent && \
|
||||||
make -j"$(nproc)" -s
|
make -j"$(nproc)" -s && \
|
||||||
|
cp /tmp/zabbix-${ZBX_VERSION}/src/zabbix_agent/zabbix_agentd /usr/sbin/zabbix_agentd && \
|
||||||
FROM alpine:3.9
|
cp /tmp/zabbix-${ZBX_VERSION}/src/zabbix_get/zabbix_get /usr/bin/zabbix_get && \
|
||||||
LABEL maintainer="Alexey Pustovalov <alexey.pustovalov@zabbix.com>"
|
cp /tmp/zabbix-${ZBX_VERSION}/src/zabbix_sender/zabbix_sender /usr/bin/zabbix_sender && \
|
||||||
|
cp /tmp/zabbix-${ZBX_VERSION}/conf/zabbix_agentd.conf /etc/zabbix/zabbix_agentd.conf && \
|
||||||
ARG BUILD_DATE
|
cd /tmp/ && \
|
||||||
ARG VCS_REF
|
rm -rf /tmp/zabbix-${ZBX_VERSION}/ && \
|
||||||
|
apk del ${APK_FLAGS_COMMON} --purge \
|
||||||
ARG APK_FLAGS_COMMON=""
|
build-dependencies && \
|
||||||
ARG APK_FLAGS_PERSISTENT="${APK_FLAGS_COMMON} --clean-protected --no-cache"
|
|
||||||
|
|
||||||
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} \
|
|
||||||
ZBX_TYPE=agent ZBX_DB_TYPE=none ZBX_OPT_TYPE=none
|
|
||||||
|
|
||||||
LABEL org.label-schema.name="zabbix-${ZBX_TYPE}-alpine" \
|
|
||||||
org.label-schema.vendor="Zabbix LLC" \
|
|
||||||
org.label-schema.url="https://zabbix.com/" \
|
|
||||||
org.label-schema.description="Zabbix agent is deployed on a monitoring target to actively monitor local resources and applications" \
|
|
||||||
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-${ZBX_TYPE} --link zabbix-server:zabbix-server -p 10050:10050 -d zabbix-${ZBX_TYPE}:alpine-${ZBX_VERSION}"
|
|
||||||
|
|
||||||
STOPSIGNAL SIGTERM
|
|
||||||
|
|
||||||
COPY --from=builder /tmp/zabbix-${ZBX_VERSION}/src/zabbix_agent/zabbix_agentd /usr/sbin/zabbix_agentd
|
|
||||||
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_agentd.conf /etc/zabbix/zabbix_agentd.conf
|
|
||||||
|
|
||||||
RUN set -eux && \
|
|
||||||
addgroup zabbix && \
|
|
||||||
adduser -S \
|
|
||||||
-D -G zabbix \
|
|
||||||
-h /var/lib/zabbix/ \
|
|
||||||
zabbix && \
|
|
||||||
mkdir -p /etc/zabbix && \
|
|
||||||
mkdir -p /etc/zabbix/zabbix_agentd.d && \
|
|
||||||
mkdir -p /var/lib/zabbix && \
|
|
||||||
mkdir -p /var/lib/zabbix/enc && \
|
|
||||||
mkdir -p /var/lib/zabbix/modules && \
|
|
||||||
chown --quiet -R zabbix:root /var/lib/zabbix && \
|
|
||||||
apk update && \
|
|
||||||
apk add ${APK_FLAGS_PERSISTENT} \
|
|
||||||
tini \
|
|
||||||
bash \
|
|
||||||
coreutils \
|
|
||||||
iputils \
|
|
||||||
libldap && \
|
|
||||||
rm -rf /var/cache/apk/*
|
rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
EXPOSE 10050/TCP
|
EXPOSE 10050/TCP
|
||||||
@ -103,4 +99,4 @@ VOLUME ["/etc/zabbix/zabbix_agentd.d", "/var/lib/zabbix/enc", "/var/lib/zabbix/m
|
|||||||
|
|
||||||
COPY ["docker-entrypoint.sh", "/usr/bin/"]
|
COPY ["docker-entrypoint.sh", "/usr/bin/"]
|
||||||
|
|
||||||
ENTRYPOINT ["/sbin/tini", "--", "/usr/bin/docker-entrypoint.sh"]
|
ENTRYPOINT ["/sbin/tini", "--", "/usr/bin/docker-entrypoint.sh"]
|
||||||
|
@ -1,90 +1,12 @@
|
|||||||
FROM alpine:3.4 as builder
|
|
||||||
|
|
||||||
ARG APK_FLAGS_COMMON=""
|
|
||||||
ARG APK_FLAGS_DEV="${APK_FLAGS_COMMON} --no-cache"
|
|
||||||
|
|
||||||
ARG MAJOR_VERSION=master
|
|
||||||
ARG ZBX_VERSION=${MAJOR_VERSION}
|
|
||||||
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
|
|
||||||
ENV ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES} \
|
|
||||||
PATH=${PATH}:/usr/lib/jvm/default-jvm/bin/ JAVA_HOME=/usr/lib/jvm/default-jvm \
|
|
||||||
ZBX_TYPE=server ZBX_DB_TYPE=mysql ZBX_OPT_TYPE=nginx \
|
|
||||||
MYSQL_ALLOW_EMPTY_PASSWORD=true ZBX_ADD_SERVER=true ZBX_ADD_WEB=true DB_SERVER_HOST=localhost MYSQL_USER=zabbix ZBX_ADD_JAVA_GATEWAY=true ZBX_JAVAGATEWAY_ENABLE=true ZBX_JAVAGATEWAY=localhost
|
|
||||||
|
|
||||||
RUN set -eux && \
|
|
||||||
apk add ${APK_FLAGS_DEV} --virtual build-dependencies \
|
|
||||||
bash \
|
|
||||||
alpine-sdk \
|
|
||||||
autoconf \
|
|
||||||
automake \
|
|
||||||
coreutils \
|
|
||||||
curl-dev \
|
|
||||||
gettext \
|
|
||||||
libssh2-dev \
|
|
||||||
libxml2-dev \
|
|
||||||
mysql-dev \
|
|
||||||
net-snmp-dev \
|
|
||||||
openipmi-dev \
|
|
||||||
openjdk8 \
|
|
||||||
openldap-dev \
|
|
||||||
subversion \
|
|
||||||
unixodbc-dev && \
|
|
||||||
cd /tmp/ && \
|
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --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" include/version.h && \
|
|
||||||
sed -i "s/{ZABBIX_REVISION}/$zabbix_revision/g" include/version.h && \
|
|
||||||
sed -i "s/{ZABBIX_REVISION}/$zabbix_revision/g" src/zabbix_java/src/com/zabbix/gateway/GeneralInformation.java && \
|
|
||||||
./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 \
|
|
||||||
--enable-agent \
|
|
||||||
--enable-${ZBX_TYPE} \
|
|
||||||
--with-${ZBX_DB_TYPE} \
|
|
||||||
# Does not support stable iksemel library
|
|
||||||
# --with-jabber \
|
|
||||||
--with-ldap \
|
|
||||||
--with-libcurl \
|
|
||||||
--with-libxml2 \
|
|
||||||
--enable-java \
|
|
||||||
--with-net-snmp \
|
|
||||||
--with-openipmi \
|
|
||||||
--with-openssl \
|
|
||||||
--with-ssh2 \
|
|
||||||
--with-unixodbc \
|
|
||||||
--enable-ipv6 \
|
|
||||||
--silent && \
|
|
||||||
make -j"$(nproc)" -s dbschema && \
|
|
||||||
make -j"$(nproc)" -s && \
|
|
||||||
cat database/${ZBX_DB_TYPE}/schema.sql > database/${ZBX_DB_TYPE}/create.sql && \
|
|
||||||
cat database/${ZBX_DB_TYPE}/images.sql >> database/${ZBX_DB_TYPE}/create.sql && \
|
|
||||||
cat database/${ZBX_DB_TYPE}/data.sql >> database/${ZBX_DB_TYPE}/create.sql && \
|
|
||||||
gzip database/${ZBX_DB_TYPE}/create.sql && \
|
|
||||||
rm -rf /tmp/zabbix-${ZBX_VERSION}/src/zabbix_java/lib/*.xml && \
|
|
||||||
cd frontends/php/ && \
|
|
||||||
rm -f conf/zabbix.conf.php && \
|
|
||||||
rm -rf tests && \
|
|
||||||
./locale/make_mo.sh
|
|
||||||
|
|
||||||
FROM alpine:3.4
|
FROM alpine:3.4
|
||||||
LABEL maintainer="Alexey Pustovalov <alexey.pustovalov@zabbix.com>"
|
|
||||||
|
|
||||||
ARG BUILD_DATE
|
ARG BUILD_DATE
|
||||||
ARG VCS_REF
|
ARG VCS_REF
|
||||||
|
|
||||||
ARG APK_FLAGS_COMMON=""
|
ARG APK_FLAGS_COMMON=""
|
||||||
|
ARG APK_FLAGS_DEV="${APK_FLAGS_COMMON} --no-cache"
|
||||||
ARG APK_FLAGS_PERSISTENT="${APK_FLAGS_COMMON} --clean-protected --no-cache"
|
ARG APK_FLAGS_PERSISTENT="${APK_FLAGS_COMMON} --clean-protected --no-cache"
|
||||||
|
ENV PATH=${PATH}:/usr/lib/jvm/default-jvm/bin/ JAVA_HOME=/usr/lib/jvm/default-jvm \
|
||||||
ARG MAJOR_VERSION=master
|
|
||||||
ARG ZBX_VERSION=${MAJOR_VERSION}
|
|
||||||
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
|
|
||||||
ENV ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES} \
|
|
||||||
MIBDIRS=/usr/share/snmp/mibs:/var/lib/zabbix/mibs MIBS=+ALL PATH=${PATH}:/usr/lib/jvm/default-jvm/bin/ JAVA_HOME=/usr/lib/jvm/default-jvm \
|
|
||||||
ZBX_TYPE=server ZBX_DB_TYPE=mysql ZBX_OPT_TYPE=nginx \
|
ZBX_TYPE=server ZBX_DB_TYPE=mysql ZBX_OPT_TYPE=nginx \
|
||||||
MYSQL_ALLOW_EMPTY_PASSWORD=true ZBX_ADD_SERVER=true ZBX_ADD_WEB=true DB_SERVER_HOST=localhost MYSQL_USER=zabbix ZBX_ADD_JAVA_GATEWAY=true ZBX_JAVAGATEWAY_ENABLE=true ZBX_JAVAGATEWAY=localhost
|
MYSQL_ALLOW_EMPTY_PASSWORD=true ZBX_ADD_SERVER=true ZBX_ADD_WEB=true DB_SERVER_HOST=localhost MYSQL_USER=zabbix ZBX_ADD_JAVA_GATEWAY=true ZBX_JAVAGATEWAY_ENABLE=true ZBX_JAVAGATEWAY=localhost
|
||||||
|
|
||||||
@ -95,25 +17,10 @@ LABEL org.label-schema.name="zabbix-${ZBX_TYPE}-${ZBX_DB_TYPE}-alpine" \
|
|||||||
org.label-schema.vcs-ref="${VCS_REF}" \
|
org.label-schema.vcs-ref="${VCS_REF}" \
|
||||||
org.label-schema.build-date="${BUILD_DATE}" \
|
org.label-schema.build-date="${BUILD_DATE}" \
|
||||||
org.label-schema.schema-version="1.0" \
|
org.label-schema.schema-version="1.0" \
|
||||||
org.label-schema.license="GPL 2.0" \
|
org.label-schema.license="GPL 2.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-appliance -p 80:80 -p 10051:10051 -d zabbix-appliance:alpine-${ZBX_VERSION}"
|
|
||||||
|
|
||||||
STOPSIGNAL SIGTERM
|
STOPSIGNAL SIGTERM
|
||||||
|
|
||||||
COPY --from=builder /tmp/zabbix-${ZBX_VERSION}/src/zabbix_${ZBX_TYPE}/zabbix_${ZBX_TYPE} /usr/sbin/zabbix_${ZBX_TYPE}
|
|
||||||
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_${ZBX_TYPE}.conf /etc/zabbix/zabbix_${ZBX_TYPE}.conf
|
|
||||||
COPY --from=builder /tmp/zabbix-${ZBX_VERSION}/database/${ZBX_DB_TYPE}/create.sql.gz /usr/share/doc/zabbix-${ZBX_TYPE}-${ZBX_DB_TYPE}/create.sql.gz
|
|
||||||
|
|
||||||
COPY --from=builder /tmp/zabbix-${ZBX_VERSION}/src/zabbix_java/bin/ /usr/sbin/zabbix_java/bin/
|
|
||||||
COPY --from=builder /tmp/zabbix-${ZBX_VERSION}/src/zabbix_java/lib/ /usr/sbin/zabbix_java/lib/
|
|
||||||
|
|
||||||
COPY --from=builder /tmp/zabbix-${ZBX_VERSION}/frontends/php/ /usr/share/zabbix/
|
|
||||||
|
|
||||||
RUN set -eux && \
|
RUN set -eux && \
|
||||||
addgroup zabbix && \
|
addgroup zabbix && \
|
||||||
adduser -S \
|
adduser -S \
|
||||||
@ -168,6 +75,92 @@ RUN set -eux && \
|
|||||||
unixodbc && \
|
unixodbc && \
|
||||||
rm -rf /var/cache/apk/*
|
rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
|
ARG MAJOR_VERSION=master
|
||||||
|
ARG ZBX_VERSION=${MAJOR_VERSION}
|
||||||
|
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
|
||||||
|
ENV ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES}
|
||||||
|
|
||||||
|
LABEL 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-appliance -p 80:80 -p 10051:10051 -d zabbix-appliance:alpine-${ZBX_VERSION}"
|
||||||
|
|
||||||
|
RUN set -eux && \
|
||||||
|
apk add ${APK_FLAGS_DEV} --virtual build-dependencies \
|
||||||
|
bash \
|
||||||
|
alpine-sdk \
|
||||||
|
autoconf \
|
||||||
|
automake \
|
||||||
|
coreutils \
|
||||||
|
curl-dev \
|
||||||
|
gettext \
|
||||||
|
libssh2-dev \
|
||||||
|
libxml2-dev \
|
||||||
|
mysql-dev \
|
||||||
|
net-snmp-dev \
|
||||||
|
openipmi-dev \
|
||||||
|
openjdk8 \
|
||||||
|
openldap-dev \
|
||||||
|
subversion \
|
||||||
|
unixodbc-dev && \
|
||||||
|
cd /tmp/ && \
|
||||||
|
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --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" include/version.h && \
|
||||||
|
sed -i "s/{ZABBIX_REVISION}/$zabbix_revision/g" include/version.h && \
|
||||||
|
sed -i "s/{ZABBIX_REVISION}/$zabbix_revision/g" src/zabbix_java/src/com/zabbix/gateway/GeneralInformation.java && \
|
||||||
|
./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 \
|
||||||
|
--enable-agent \
|
||||||
|
--enable-${ZBX_TYPE} \
|
||||||
|
--with-${ZBX_DB_TYPE} \
|
||||||
|
# Does not support stable iksemel library
|
||||||
|
# --with-jabber \
|
||||||
|
--with-ldap \
|
||||||
|
--with-libcurl \
|
||||||
|
--with-libxml2 \
|
||||||
|
--enable-java \
|
||||||
|
--with-net-snmp \
|
||||||
|
--with-openipmi \
|
||||||
|
--with-openssl \
|
||||||
|
--with-ssh2 \
|
||||||
|
--with-unixodbc \
|
||||||
|
--enable-ipv6 \
|
||||||
|
--silent && \
|
||||||
|
make -j"$(nproc)" -s dbschema && \
|
||||||
|
make -j"$(nproc)" -s && \
|
||||||
|
cp src/zabbix_${ZBX_TYPE}/zabbix_${ZBX_TYPE} /usr/sbin/zabbix_${ZBX_TYPE} && \
|
||||||
|
cp src/zabbix_get/zabbix_get /usr/bin/zabbix_get && \
|
||||||
|
cp src/zabbix_sender/zabbix_sender /usr/bin/zabbix_sender && \
|
||||||
|
cp conf/zabbix_${ZBX_TYPE}.conf /etc/zabbix/zabbix_${ZBX_TYPE}.conf && \
|
||||||
|
cat database/${ZBX_DB_TYPE}/schema.sql > database/${ZBX_DB_TYPE}/create.sql && \
|
||||||
|
cat database/${ZBX_DB_TYPE}/images.sql >> database/${ZBX_DB_TYPE}/create.sql && \
|
||||||
|
cat database/${ZBX_DB_TYPE}/data.sql >> database/${ZBX_DB_TYPE}/create.sql && \
|
||||||
|
gzip database/${ZBX_DB_TYPE}/create.sql && \
|
||||||
|
cp /tmp/zabbix-${ZBX_VERSION}/database/${ZBX_DB_TYPE}/create.sql.gz /usr/share/doc/zabbix-${ZBX_TYPE}-${ZBX_DB_TYPE}/create.sql.gz && \
|
||||||
|
cd /tmp/ && \
|
||||||
|
rm -rf /tmp/zabbix-${ZBX_VERSION}/ && \
|
||||||
|
cd /usr/share/ && \
|
||||||
|
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
|
mkdir /usr/share/zabbix/ && \
|
||||||
|
cp -R /usr/share/zabbix-${ZBX_VERSION}/frontends/php/* /usr/share/zabbix/ && \
|
||||||
|
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
||||||
|
cd /usr/share/zabbix/ && \
|
||||||
|
rm -f conf/zabbix.conf.php && \
|
||||||
|
rm -rf tests && \
|
||||||
|
./locale/make_mo.sh && \
|
||||||
|
cd /tmp/ && \
|
||||||
|
rm -rf /tmp/zabbix-${ZBX_VERSION}/ && \
|
||||||
|
apk del ${APK_FLAGS_COMMON} --purge \
|
||||||
|
build-dependencies && \
|
||||||
|
rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
EXPOSE 80/TCP 443/TCP 10051/TCP
|
EXPOSE 80/TCP 443/TCP 10051/TCP
|
||||||
|
|
||||||
WORKDIR /var/lib/zabbix
|
WORKDIR /var/lib/zabbix
|
||||||
|
Loading…
Reference in New Issue
Block a user