mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2025-01-25 14:58:50 +01:00
Prepare for Zabbix 5.4 release
This commit is contained in:
parent
cbf06bb6de
commit
84a0cc3227
@ -58,7 +58,7 @@ RUN set -eux && \
|
|||||||
make \
|
make \
|
||||||
git && \
|
git && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -82,7 +82,7 @@ RUN set -eux && \
|
|||||||
git \
|
git \
|
||||||
gcc && \
|
gcc && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -73,7 +73,7 @@ RUN set -eux && \
|
|||||||
git \
|
git \
|
||||||
gcc && \
|
gcc && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -56,7 +56,7 @@ RUN set -eux && \
|
|||||||
openssl-dev \
|
openssl-dev \
|
||||||
zlib-dev && \
|
zlib-dev && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
zabbix_revision=`git rev-parse --short HEAD` && \
|
||||||
sed -i "s/{ZABBIX_REVISION}/$zabbix_revision/g" src/go/pkg/version/version.go && \
|
sed -i "s/{ZABBIX_REVISION}/$zabbix_revision/g" src/go/pkg/version/version.go && \
|
||||||
|
@ -70,7 +70,7 @@ RUN set -eux && \
|
|||||||
g++ \
|
g++ \
|
||||||
golang && \
|
golang && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
version: '3.5'
|
version: '3.5'
|
||||||
services:
|
services:
|
||||||
zabbix-server:
|
zabbix-server:
|
||||||
image: zabbix/zabbix-server-mysql:alpine-5.4-latest
|
image: zabbix/zabbix-server-mysql:alpine-trunk
|
||||||
ports:
|
ports:
|
||||||
- "10051:10051"
|
- "10051:10051"
|
||||||
volumes:
|
volumes:
|
||||||
@ -64,7 +64,7 @@ services:
|
|||||||
com.zabbix.os: "alpine"
|
com.zabbix.os: "alpine"
|
||||||
|
|
||||||
zabbix-proxy-sqlite3:
|
zabbix-proxy-sqlite3:
|
||||||
image: zabbix/zabbix-proxy-sqlite3:alpine-5.4-latest
|
image: zabbix/zabbix-proxy-sqlite3:alpine-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- all
|
- all
|
||||||
ports:
|
ports:
|
||||||
@ -113,7 +113,7 @@ services:
|
|||||||
com.zabbix.os: "alpine"
|
com.zabbix.os: "alpine"
|
||||||
|
|
||||||
zabbix-proxy-mysql:
|
zabbix-proxy-mysql:
|
||||||
image: zabbix/zabbix-proxy-mysql:alpine-5.4-latest
|
image: zabbix/zabbix-proxy-mysql:alpine-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- all
|
- all
|
||||||
ports:
|
ports:
|
||||||
@ -171,7 +171,7 @@ services:
|
|||||||
com.zabbix.os: "alpine"
|
com.zabbix.os: "alpine"
|
||||||
|
|
||||||
zabbix-web-apache-mysql:
|
zabbix-web-apache-mysql:
|
||||||
image: zabbix/zabbix-web-apache-mysql:alpine-5.4-latest
|
image: zabbix/zabbix-web-apache-mysql:alpine-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- all
|
- all
|
||||||
ports:
|
ports:
|
||||||
@ -227,7 +227,7 @@ services:
|
|||||||
com.zabbix.os: "alpine"
|
com.zabbix.os: "alpine"
|
||||||
|
|
||||||
zabbix-web-nginx-mysql:
|
zabbix-web-nginx-mysql:
|
||||||
image: zabbix/zabbix-web-nginx-mysql:alpine-5.4-latest
|
image: zabbix/zabbix-web-nginx-mysql:alpine-trunk
|
||||||
ports:
|
ports:
|
||||||
- "80:8080"
|
- "80:8080"
|
||||||
- "443:8443"
|
- "443:8443"
|
||||||
@ -281,7 +281,7 @@ services:
|
|||||||
com.zabbix.os: "alpine"
|
com.zabbix.os: "alpine"
|
||||||
|
|
||||||
zabbix-agent:
|
zabbix-agent:
|
||||||
image: zabbix/zabbix-agent:alpine-5.4-latest
|
image: zabbix/zabbix-agent:alpine-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
@ -321,7 +321,7 @@ services:
|
|||||||
com.zabbix.os: "alpine"
|
com.zabbix.os: "alpine"
|
||||||
|
|
||||||
zabbix-java-gateway:
|
zabbix-java-gateway:
|
||||||
image: zabbix/zabbix-java-gateway:alpine-5.4-latest
|
image: zabbix/zabbix-java-gateway:alpine-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
@ -350,7 +350,7 @@ services:
|
|||||||
com.zabbix.os: "alpine"
|
com.zabbix.os: "alpine"
|
||||||
|
|
||||||
zabbix-snmptraps:
|
zabbix-snmptraps:
|
||||||
image: zabbix/zabbix-snmptraps:alpine-5.4-latest
|
image: zabbix/zabbix-snmptraps:alpine-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
@ -379,7 +379,7 @@ services:
|
|||||||
com.zabbix.os: "alpine"
|
com.zabbix.os: "alpine"
|
||||||
|
|
||||||
zabbix-web-service:
|
zabbix-web-service:
|
||||||
image: zabbix/zabbix-web-service:alpine-5.4-latest
|
image: zabbix/zabbix-web-service:alpine-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
version: '3.5'
|
version: '3.5'
|
||||||
services:
|
services:
|
||||||
zabbix-server:
|
zabbix-server:
|
||||||
image: zabbix/zabbix-server-pgsql:alpine-5.4-latest
|
image: zabbix/zabbix-server-pgsql:alpine-trunk
|
||||||
ports:
|
ports:
|
||||||
- "10051:10051"
|
- "10051:10051"
|
||||||
volumes:
|
volumes:
|
||||||
@ -63,7 +63,7 @@ services:
|
|||||||
com.zabbix.os: "alpine"
|
com.zabbix.os: "alpine"
|
||||||
|
|
||||||
zabbix-proxy-sqlite3:
|
zabbix-proxy-sqlite3:
|
||||||
image: zabbix/zabbix-proxy-sqlite3:alpine-5.4-latest
|
image: zabbix/zabbix-proxy-sqlite3:alpine-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- all
|
- all
|
||||||
ports:
|
ports:
|
||||||
@ -112,7 +112,7 @@ services:
|
|||||||
com.zabbix.os: "alpine"
|
com.zabbix.os: "alpine"
|
||||||
|
|
||||||
zabbix-proxy-mysql:
|
zabbix-proxy-mysql:
|
||||||
image: zabbix/zabbix-proxy-mysql:alpine-5.4-latest
|
image: zabbix/zabbix-proxy-mysql:alpine-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- all
|
- all
|
||||||
ports:
|
ports:
|
||||||
@ -167,7 +167,7 @@ services:
|
|||||||
com.zabbix.os: "alpine"
|
com.zabbix.os: "alpine"
|
||||||
|
|
||||||
zabbix-web-apache-pgsql:
|
zabbix-web-apache-pgsql:
|
||||||
image: zabbix/zabbix-web-apache-pgsql:alpine-5.4-latest
|
image: zabbix/zabbix-web-apache-pgsql:alpine-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- all
|
- all
|
||||||
ports:
|
ports:
|
||||||
@ -223,7 +223,7 @@ services:
|
|||||||
com.zabbix.os: "alpine"
|
com.zabbix.os: "alpine"
|
||||||
|
|
||||||
zabbix-web-nginx-pgsql:
|
zabbix-web-nginx-pgsql:
|
||||||
image: zabbix/zabbix-web-nginx-pgsql:alpine-5.4-latest
|
image: zabbix/zabbix-web-nginx-pgsql:alpine-trunk
|
||||||
ports:
|
ports:
|
||||||
- "80:8080"
|
- "80:8080"
|
||||||
- "443:8443"
|
- "443:8443"
|
||||||
@ -277,7 +277,7 @@ services:
|
|||||||
com.zabbix.os: "alpine"
|
com.zabbix.os: "alpine"
|
||||||
|
|
||||||
zabbix-agent:
|
zabbix-agent:
|
||||||
image: zabbix/zabbix-agent:alpine-5.4-latest
|
image: zabbix/zabbix-agent:alpine-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
@ -317,7 +317,7 @@ services:
|
|||||||
com.zabbix.os: "alpine"
|
com.zabbix.os: "alpine"
|
||||||
|
|
||||||
zabbix-java-gateway:
|
zabbix-java-gateway:
|
||||||
image: zabbix/zabbix-java-gateway:alpine-5.4-latest
|
image: zabbix/zabbix-java-gateway:alpine-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
@ -346,7 +346,7 @@ services:
|
|||||||
com.zabbix.os: "alpine"
|
com.zabbix.os: "alpine"
|
||||||
|
|
||||||
zabbix-snmptraps:
|
zabbix-snmptraps:
|
||||||
image: zabbix/zabbix-snmptraps:alpine-5.4-latest
|
image: zabbix/zabbix-snmptraps:alpine-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
@ -375,7 +375,7 @@ services:
|
|||||||
com.zabbix.os: "alpine"
|
com.zabbix.os: "alpine"
|
||||||
|
|
||||||
zabbix-web-service:
|
zabbix-web-service:
|
||||||
image: zabbix/zabbix-web-service:alpine-5.4-latest
|
image: zabbix/zabbix-web-service:alpine-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
version: '3.5'
|
version: '3.5'
|
||||||
services:
|
services:
|
||||||
zabbix-server:
|
zabbix-server:
|
||||||
image: zabbix/zabbix-server-mysql:centos-5.4-latest
|
image: zabbix/zabbix-server-mysql:centos-trunk
|
||||||
ports:
|
ports:
|
||||||
- "10051:10051"
|
- "10051:10051"
|
||||||
volumes:
|
volumes:
|
||||||
@ -64,7 +64,7 @@ services:
|
|||||||
com.zabbix.os: "centos"
|
com.zabbix.os: "centos"
|
||||||
|
|
||||||
zabbix-proxy-sqlite3:
|
zabbix-proxy-sqlite3:
|
||||||
image: zabbix/zabbix-proxy-sqlite3:centos-5.4-latest
|
image: zabbix/zabbix-proxy-sqlite3:centos-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- all
|
- all
|
||||||
ports:
|
ports:
|
||||||
@ -113,7 +113,7 @@ services:
|
|||||||
com.zabbix.os: "centos"
|
com.zabbix.os: "centos"
|
||||||
|
|
||||||
zabbix-proxy-mysql:
|
zabbix-proxy-mysql:
|
||||||
image: zabbix/zabbix-proxy-mysql:centos-5.4-latest
|
image: zabbix/zabbix-proxy-mysql:centos-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- all
|
- all
|
||||||
ports:
|
ports:
|
||||||
@ -171,7 +171,7 @@ services:
|
|||||||
com.zabbix.os: "centos"
|
com.zabbix.os: "centos"
|
||||||
|
|
||||||
zabbix-web-apache-mysql:
|
zabbix-web-apache-mysql:
|
||||||
image: zabbix/zabbix-web-apache-mysql:centos-5.4-latest
|
image: zabbix/zabbix-web-apache-mysql:centos-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- all
|
- all
|
||||||
ports:
|
ports:
|
||||||
@ -227,7 +227,7 @@ services:
|
|||||||
com.zabbix.os: "centos"
|
com.zabbix.os: "centos"
|
||||||
|
|
||||||
zabbix-web-nginx-mysql:
|
zabbix-web-nginx-mysql:
|
||||||
image: zabbix/zabbix-web-nginx-mysql:centos-5.4-latest
|
image: zabbix/zabbix-web-nginx-mysql:centos-trunk
|
||||||
ports:
|
ports:
|
||||||
- "80:8080"
|
- "80:8080"
|
||||||
- "443:8443"
|
- "443:8443"
|
||||||
@ -281,7 +281,7 @@ services:
|
|||||||
com.zabbix.os: "centos"
|
com.zabbix.os: "centos"
|
||||||
|
|
||||||
zabbix-agent:
|
zabbix-agent:
|
||||||
image: zabbix/zabbix-agent:centos-5.4-latest
|
image: zabbix/zabbix-agent:centos-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
@ -321,7 +321,7 @@ services:
|
|||||||
com.zabbix.os: "centos"
|
com.zabbix.os: "centos"
|
||||||
|
|
||||||
zabbix-java-gateway:
|
zabbix-java-gateway:
|
||||||
image: zabbix/zabbix-java-gateway:centos-5.4-latest
|
image: zabbix/zabbix-java-gateway:centos-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
@ -350,7 +350,7 @@ services:
|
|||||||
com.zabbix.os: "centos"
|
com.zabbix.os: "centos"
|
||||||
|
|
||||||
zabbix-snmptraps:
|
zabbix-snmptraps:
|
||||||
image: zabbix/zabbix-snmptraps:centos-5.4-latest
|
image: zabbix/zabbix-snmptraps:centos-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
@ -379,7 +379,7 @@ services:
|
|||||||
com.zabbix.os: "centos"
|
com.zabbix.os: "centos"
|
||||||
|
|
||||||
zabbix-web-service:
|
zabbix-web-service:
|
||||||
image: zabbix/zabbix-web-service:centos-5.4-latest
|
image: zabbix/zabbix-web-service:centos-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
version: '3.5'
|
version: '3.5'
|
||||||
services:
|
services:
|
||||||
zabbix-server:
|
zabbix-server:
|
||||||
image: zabbix/zabbix-server-pgsql:centos-5.4-latest
|
image: zabbix/zabbix-server-pgsql:centos-trunk
|
||||||
ports:
|
ports:
|
||||||
- "10051:10051"
|
- "10051:10051"
|
||||||
volumes:
|
volumes:
|
||||||
@ -63,7 +63,7 @@ services:
|
|||||||
com.zabbix.os: "centos"
|
com.zabbix.os: "centos"
|
||||||
|
|
||||||
zabbix-proxy-sqlite3:
|
zabbix-proxy-sqlite3:
|
||||||
image: zabbix/zabbix-proxy-sqlite3:centos-5.4-latest
|
image: zabbix/zabbix-proxy-sqlite3:centos-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- all
|
- all
|
||||||
ports:
|
ports:
|
||||||
@ -112,7 +112,7 @@ services:
|
|||||||
com.zabbix.os: "centos"
|
com.zabbix.os: "centos"
|
||||||
|
|
||||||
zabbix-proxy-mysql:
|
zabbix-proxy-mysql:
|
||||||
image: zabbix/zabbix-proxy-mysql:centos-5.4-latest
|
image: zabbix/zabbix-proxy-mysql:centos-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- all
|
- all
|
||||||
ports:
|
ports:
|
||||||
@ -167,7 +167,7 @@ services:
|
|||||||
com.zabbix.os: "centos"
|
com.zabbix.os: "centos"
|
||||||
|
|
||||||
zabbix-web-apache-pgsql:
|
zabbix-web-apache-pgsql:
|
||||||
image: zabbix/zabbix-web-apache-pgsql:centos-5.4-latest
|
image: zabbix/zabbix-web-apache-pgsql:centos-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- all
|
- all
|
||||||
ports:
|
ports:
|
||||||
@ -223,7 +223,7 @@ services:
|
|||||||
com.zabbix.os: "centos"
|
com.zabbix.os: "centos"
|
||||||
|
|
||||||
zabbix-web-nginx-pgsql:
|
zabbix-web-nginx-pgsql:
|
||||||
image: zabbix/zabbix-web-nginx-pgsql:centos-5.4-latest
|
image: zabbix/zabbix-web-nginx-pgsql:centos-trunk
|
||||||
ports:
|
ports:
|
||||||
- "80:8080"
|
- "80:8080"
|
||||||
- "443:8443"
|
- "443:8443"
|
||||||
@ -277,7 +277,7 @@ services:
|
|||||||
com.zabbix.os: "centos"
|
com.zabbix.os: "centos"
|
||||||
|
|
||||||
zabbix-agent:
|
zabbix-agent:
|
||||||
image: zabbix/zabbix-agent:centos-5.4-latest
|
image: zabbix/zabbix-agent:centos-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
@ -317,7 +317,7 @@ services:
|
|||||||
com.zabbix.os: "centos"
|
com.zabbix.os: "centos"
|
||||||
|
|
||||||
zabbix-java-gateway:
|
zabbix-java-gateway:
|
||||||
image: zabbix/zabbix-java-gateway:centos-5.4-latest
|
image: zabbix/zabbix-java-gateway:centos-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
@ -346,7 +346,7 @@ services:
|
|||||||
com.zabbix.os: "centos"
|
com.zabbix.os: "centos"
|
||||||
|
|
||||||
zabbix-snmptraps:
|
zabbix-snmptraps:
|
||||||
image: zabbix/zabbix-snmptraps:centos-5.4-latest
|
image: zabbix/zabbix-snmptraps:centos-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
@ -375,7 +375,7 @@ services:
|
|||||||
com.zabbix.os: "centos"
|
com.zabbix.os: "centos"
|
||||||
|
|
||||||
zabbix-web-service:
|
zabbix-web-service:
|
||||||
image: zabbix/zabbix-web-service:centos-5.4-latest
|
image: zabbix/zabbix-web-service:centos-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
version: '3.5'
|
version: '3.5'
|
||||||
services:
|
services:
|
||||||
zabbix-server:
|
zabbix-server:
|
||||||
image: zabbix/zabbix-server-mysql:ubuntu-5.4-latest
|
image: zabbix/zabbix-server-mysql:ubuntu-trunk
|
||||||
ports:
|
ports:
|
||||||
- "10051:10051"
|
- "10051:10051"
|
||||||
volumes:
|
volumes:
|
||||||
@ -111,7 +111,7 @@ services:
|
|||||||
com.zabbix.os: "ubuntu"
|
com.zabbix.os: "ubuntu"
|
||||||
|
|
||||||
zabbix-proxy-mysql:
|
zabbix-proxy-mysql:
|
||||||
image: zabbix/zabbix-proxy-mysql:ubuntu-5.4-latest
|
image: zabbix/zabbix-proxy-mysql:ubuntu-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- all
|
- all
|
||||||
ports:
|
ports:
|
||||||
@ -166,7 +166,7 @@ services:
|
|||||||
com.zabbix.os: "ubuntu"
|
com.zabbix.os: "ubuntu"
|
||||||
|
|
||||||
zabbix-web-apache-mysql:
|
zabbix-web-apache-mysql:
|
||||||
image: zabbix/zabbix-web-apache-mysql:ubuntu-5.4-latest
|
image: zabbix/zabbix-web-apache-mysql:ubuntu-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- all
|
- all
|
||||||
ports:
|
ports:
|
||||||
@ -221,7 +221,7 @@ services:
|
|||||||
com.zabbix.os: "ubuntu"
|
com.zabbix.os: "ubuntu"
|
||||||
|
|
||||||
zabbix-web-nginx-mysql:
|
zabbix-web-nginx-mysql:
|
||||||
image: zabbix/zabbix-web-nginx-mysql:ubuntu-5.4-latest
|
image: zabbix/zabbix-web-nginx-mysql:ubuntu-trunk
|
||||||
ports:
|
ports:
|
||||||
- "80:8080"
|
- "80:8080"
|
||||||
- "443:8443"
|
- "443:8443"
|
||||||
@ -274,7 +274,7 @@ services:
|
|||||||
com.zabbix.os: "ubuntu"
|
com.zabbix.os: "ubuntu"
|
||||||
|
|
||||||
zabbix-agent:
|
zabbix-agent:
|
||||||
image: zabbix/zabbix-agent:ubuntu-5.4-latest
|
image: zabbix/zabbix-agent:ubuntu-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
@ -313,7 +313,7 @@ services:
|
|||||||
com.zabbix.os: "ubuntu"
|
com.zabbix.os: "ubuntu"
|
||||||
|
|
||||||
zabbix-java-gateway:
|
zabbix-java-gateway:
|
||||||
image: zabbix/zabbix-java-gateway:ubuntu-5.4-latest
|
image: zabbix/zabbix-java-gateway:ubuntu-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
@ -342,7 +342,7 @@ services:
|
|||||||
com.zabbix.os: "ubuntu"
|
com.zabbix.os: "ubuntu"
|
||||||
|
|
||||||
zabbix-snmptraps:
|
zabbix-snmptraps:
|
||||||
image: zabbix/zabbix-snmptraps:ubuntu-5.4-latest
|
image: zabbix/zabbix-snmptraps:ubuntu-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
@ -371,7 +371,7 @@ services:
|
|||||||
com.zabbix.os: "ubuntu"
|
com.zabbix.os: "ubuntu"
|
||||||
|
|
||||||
zabbix-web-service:
|
zabbix-web-service:
|
||||||
image: zabbix/zabbix-web-service:ubuntu-5.4-latest
|
image: zabbix/zabbix-web-service:ubuntu-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
version: '3.5'
|
version: '3.5'
|
||||||
services:
|
services:
|
||||||
zabbix-server:
|
zabbix-server:
|
||||||
image: zabbix/zabbix-server-pgsql:ubuntu-5.4-latest
|
image: zabbix/zabbix-server-pgsql:ubuntu-trunk
|
||||||
ports:
|
ports:
|
||||||
- "10051:10051"
|
- "10051:10051"
|
||||||
volumes:
|
volumes:
|
||||||
@ -62,7 +62,7 @@ services:
|
|||||||
com.zabbix.os: "ubuntu"
|
com.zabbix.os: "ubuntu"
|
||||||
|
|
||||||
zabbix-proxy-sqlite3:
|
zabbix-proxy-sqlite3:
|
||||||
image: zabbix/zabbix-proxy-sqlite3:ubuntu-5.4-latest
|
image: zabbix/zabbix-proxy-sqlite3:ubuntu-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- all
|
- all
|
||||||
ports:
|
ports:
|
||||||
@ -110,7 +110,7 @@ services:
|
|||||||
com.zabbix.os: "ubuntu"
|
com.zabbix.os: "ubuntu"
|
||||||
|
|
||||||
zabbix-proxy-mysql:
|
zabbix-proxy-mysql:
|
||||||
image: zabbix/zabbix-proxy-mysql:ubuntu-5.4-latest
|
image: zabbix/zabbix-proxy-mysql:ubuntu-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- all
|
- all
|
||||||
ports:
|
ports:
|
||||||
@ -164,7 +164,7 @@ services:
|
|||||||
com.zabbix.os: "ubuntu"
|
com.zabbix.os: "ubuntu"
|
||||||
|
|
||||||
zabbix-web-apache-pgsql:
|
zabbix-web-apache-pgsql:
|
||||||
image: zabbix/zabbix-web-apache-pgsql:ubuntu-5.4-latest
|
image: zabbix/zabbix-web-apache-pgsql:ubuntu-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- all
|
- all
|
||||||
ports:
|
ports:
|
||||||
@ -219,7 +219,7 @@ services:
|
|||||||
com.zabbix.os: "ubuntu"
|
com.zabbix.os: "ubuntu"
|
||||||
|
|
||||||
zabbix-web-nginx-pgsql:
|
zabbix-web-nginx-pgsql:
|
||||||
image: zabbix/zabbix-web-nginx-pgsql:ubuntu-5.4-latest
|
image: zabbix/zabbix-web-nginx-pgsql:ubuntu-trunk
|
||||||
ports:
|
ports:
|
||||||
- "80:8080"
|
- "80:8080"
|
||||||
- "443:8443"
|
- "443:8443"
|
||||||
@ -272,7 +272,7 @@ services:
|
|||||||
com.zabbix.os: "ubuntu"
|
com.zabbix.os: "ubuntu"
|
||||||
|
|
||||||
zabbix-agent:
|
zabbix-agent:
|
||||||
image: zabbix/zabbix-agent:ubuntu-5.4-latest
|
image: zabbix/zabbix-agent:ubuntu-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
@ -311,7 +311,7 @@ services:
|
|||||||
com.zabbix.os: "ubuntu"
|
com.zabbix.os: "ubuntu"
|
||||||
|
|
||||||
zabbix-java-gateway:
|
zabbix-java-gateway:
|
||||||
image: zabbix/zabbix-java-gateway:ubuntu-5.4-latest
|
image: zabbix/zabbix-java-gateway:ubuntu-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
@ -340,7 +340,7 @@ services:
|
|||||||
com.zabbix.os: "ubuntu"
|
com.zabbix.os: "ubuntu"
|
||||||
|
|
||||||
zabbix-snmptraps:
|
zabbix-snmptraps:
|
||||||
image: zabbix/zabbix-snmptraps:ubuntu-5.4-latest
|
image: zabbix/zabbix-snmptraps:ubuntu-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
@ -369,7 +369,7 @@ services:
|
|||||||
com.zabbix.os: "ubuntu"
|
com.zabbix.os: "ubuntu"
|
||||||
|
|
||||||
zabbix-web-service:
|
zabbix-web-service:
|
||||||
image: zabbix/zabbix-web-service:ubuntu-5.4-latest
|
image: zabbix/zabbix-web-service:ubuntu-trunk
|
||||||
profiles:
|
profiles:
|
||||||
- full
|
- full
|
||||||
- all
|
- all
|
||||||
|
@ -52,7 +52,7 @@ RUN set -eux && \
|
|||||||
make \
|
make \
|
||||||
openjdk8 && \
|
openjdk8 && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -50,7 +50,7 @@ RUN set -eux && \
|
|||||||
git \
|
git \
|
||||||
gcc && \
|
gcc && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -53,7 +53,7 @@ RUN set -eux && \
|
|||||||
git \
|
git \
|
||||||
gcc && \
|
gcc && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -148,7 +148,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: zabbix-web
|
- name: zabbix-web
|
||||||
image: zabbix/zabbix-web-nginx-mysql:alpine-5.4-latest
|
image: zabbix/zabbix-web-nginx-mysql:alpine-trunk
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8080
|
- containerPort: 8080
|
||||||
@ -282,7 +282,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: zabbix-server
|
- name: zabbix-server
|
||||||
image: zabbix/zabbix-server-mysql:alpine-5.4-latest
|
image: zabbix/zabbix-server-mysql:alpine-trunk
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 10051
|
- containerPort: 10051
|
||||||
@ -331,7 +331,7 @@ spec:
|
|||||||
mountPath: /var/lib/zabbix/snmptraps/
|
mountPath: /var/lib/zabbix/snmptraps/
|
||||||
readOnly: true
|
readOnly: true
|
||||||
- name: zabbix-snmptraps
|
- name: zabbix-snmptraps
|
||||||
image: zabbix/zabbix-snmptraps:alpine-5.4-latest
|
image: zabbix/zabbix-snmptraps:alpine-trunk
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 1162
|
- containerPort: 1162
|
||||||
@ -364,7 +364,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: zabbix-proxy-sqlite3
|
- name: zabbix-proxy-sqlite3
|
||||||
image: zabbix/zabbix-proxy-sqlite3:alpine-5.4-latest
|
image: zabbix/zabbix-proxy-sqlite3:alpine-trunk
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 10051
|
- containerPort: 10051
|
||||||
@ -396,7 +396,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: zabbix-proxy-mysql
|
- name: zabbix-proxy-mysql
|
||||||
image: zabbix/zabbix-proxy-mysql:alpine-5.4-latest
|
image: zabbix/zabbix-proxy-mysql:alpine-trunk
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 10051
|
- containerPort: 10051
|
||||||
@ -439,7 +439,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: zabbix-java-gateway
|
- name: zabbix-java-gateway
|
||||||
image: zabbix/zabbix-java-gateway:alpine-5.4-latest
|
image: zabbix/zabbix-java-gateway:alpine-trunk
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 10052
|
- containerPort: 10052
|
||||||
@ -473,7 +473,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: zabbix-agent
|
- name: zabbix-agent
|
||||||
image: zabbix/zabbix-agent:alpine-5.4-latest
|
image: zabbix/zabbix-agent:alpine-trunk
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
|
@ -81,7 +81,7 @@ RUN set -eux && \
|
|||||||
pcre-dev \
|
pcre-dev \
|
||||||
unixodbc-dev && \
|
unixodbc-dev && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -111,7 +111,7 @@ RUN set -eux && \
|
|||||||
git \
|
git \
|
||||||
unixODBC-devel && \
|
unixODBC-devel && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -95,7 +95,7 @@ RUN set -eux && \
|
|||||||
git \
|
git \
|
||||||
unixodbc-dev && \
|
unixodbc-dev && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -80,7 +80,7 @@ RUN set -eux && \
|
|||||||
make \
|
make \
|
||||||
unixodbc-dev && \
|
unixodbc-dev && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -108,7 +108,7 @@ RUN set -eux && \
|
|||||||
git \
|
git \
|
||||||
unixODBC-devel && \
|
unixODBC-devel && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -93,7 +93,7 @@ RUN set -eux && \
|
|||||||
git \
|
git \
|
||||||
unixodbc-dev && \
|
unixodbc-dev && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -85,7 +85,7 @@ RUN set -eux && \
|
|||||||
make \
|
make \
|
||||||
unixodbc-dev && \
|
unixodbc-dev && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -116,7 +116,7 @@ RUN set -eux && \
|
|||||||
git \
|
git \
|
||||||
unixODBC-devel && \
|
unixODBC-devel && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -100,7 +100,7 @@ RUN set -eux && \
|
|||||||
git \
|
git \
|
||||||
unixodbc-dev && \
|
unixodbc-dev && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -86,7 +86,7 @@ RUN set -eux && \
|
|||||||
make \
|
make \
|
||||||
unixodbc-dev && \
|
unixodbc-dev && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -115,7 +115,7 @@ RUN set -eux && \
|
|||||||
git \
|
git \
|
||||||
unixODBC-devel && \
|
unixODBC-devel && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -100,7 +100,7 @@ RUN set -eux && \
|
|||||||
git \
|
git \
|
||||||
unixodbc-dev && \
|
unixodbc-dev && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM alpine:3.13
|
FROM alpine:3.13
|
||||||
|
|
||||||
ARG MAJOR_VERSION=5.4
|
ARG MAJOR_VERSION=6.0
|
||||||
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
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM centos:centos8
|
FROM centos:centos8
|
||||||
|
|
||||||
ARG MAJOR_VERSION=5.4
|
ARG MAJOR_VERSION=6.0
|
||||||
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
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
FROM ubuntu:focal
|
FROM ubuntu:focal
|
||||||
|
|
||||||
ARG MAJOR_VERSION=5.4
|
ARG MAJOR_VERSION=6.0
|
||||||
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
|
||||||
|
|
||||||
|
@ -75,7 +75,7 @@ RUN set -eux && \
|
|||||||
gettext \
|
gettext \
|
||||||
git && \
|
git && \
|
||||||
cd /usr/share/ && \
|
cd /usr/share/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
mkdir /usr/share/zabbix/ && \
|
mkdir /usr/share/zabbix/ && \
|
||||||
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
||||||
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
||||||
|
@ -70,7 +70,7 @@ RUN set -eux && \
|
|||||||
gettext \
|
gettext \
|
||||||
git && \
|
git && \
|
||||||
cd /usr/share/ && \
|
cd /usr/share/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
mkdir /usr/share/zabbix/ && \
|
mkdir /usr/share/zabbix/ && \
|
||||||
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
||||||
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
||||||
|
@ -73,7 +73,7 @@ RUN set -eux && \
|
|||||||
gettext \
|
gettext \
|
||||||
git && \
|
git && \
|
||||||
cd /usr/share/ && \
|
cd /usr/share/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
mkdir /usr/share/zabbix/ && \
|
mkdir /usr/share/zabbix/ && \
|
||||||
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
||||||
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
||||||
|
@ -74,7 +74,7 @@ RUN set -eux && \
|
|||||||
gettext \
|
gettext \
|
||||||
git && \
|
git && \
|
||||||
cd /usr/share/ && \
|
cd /usr/share/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
mkdir /usr/share/zabbix/ && \
|
mkdir /usr/share/zabbix/ && \
|
||||||
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
||||||
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
||||||
|
@ -70,7 +70,7 @@ RUN set -eux && \
|
|||||||
gettext \
|
gettext \
|
||||||
git && \
|
git && \
|
||||||
cd /usr/share/ && \
|
cd /usr/share/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
mkdir /usr/share/zabbix/ && \
|
mkdir /usr/share/zabbix/ && \
|
||||||
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
||||||
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
||||||
|
@ -73,7 +73,7 @@ RUN set -eux && \
|
|||||||
gettext \
|
gettext \
|
||||||
git && \
|
git && \
|
||||||
cd /usr/share/ && \
|
cd /usr/share/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
mkdir /usr/share/zabbix/ && \
|
mkdir /usr/share/zabbix/ && \
|
||||||
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
||||||
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
||||||
|
@ -69,7 +69,7 @@ RUN set -eux && \
|
|||||||
gettext \
|
gettext \
|
||||||
git && \
|
git && \
|
||||||
cd /usr/share/ && \
|
cd /usr/share/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
mkdir /usr/share/zabbix/ && \
|
mkdir /usr/share/zabbix/ && \
|
||||||
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
||||||
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
||||||
|
@ -62,7 +62,7 @@ RUN set -eux && \
|
|||||||
gettext \
|
gettext \
|
||||||
git && \
|
git && \
|
||||||
cd /usr/share/ && \
|
cd /usr/share/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
mkdir /usr/share/zabbix/ && \
|
mkdir /usr/share/zabbix/ && \
|
||||||
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
||||||
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
||||||
|
@ -84,7 +84,7 @@ RUN set -eux && \
|
|||||||
gettext \
|
gettext \
|
||||||
git && \
|
git && \
|
||||||
cd /usr/share/ && \
|
cd /usr/share/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
mkdir /usr/share/zabbix/ && \
|
mkdir /usr/share/zabbix/ && \
|
||||||
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
||||||
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
||||||
|
@ -68,7 +68,7 @@ RUN set -eux && \
|
|||||||
gettext \
|
gettext \
|
||||||
git && \
|
git && \
|
||||||
cd /usr/share/ && \
|
cd /usr/share/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
mkdir /usr/share/zabbix/ && \
|
mkdir /usr/share/zabbix/ && \
|
||||||
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
||||||
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
||||||
|
@ -62,7 +62,7 @@ RUN set -eux && \
|
|||||||
gettext \
|
gettext \
|
||||||
git && \
|
git && \
|
||||||
cd /usr/share/ && \
|
cd /usr/share/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
mkdir /usr/share/zabbix/ && \
|
mkdir /usr/share/zabbix/ && \
|
||||||
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
||||||
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
||||||
|
@ -84,7 +84,7 @@ RUN set -eux && \
|
|||||||
gettext \
|
gettext \
|
||||||
git && \
|
git && \
|
||||||
cd /usr/share/ && \
|
cd /usr/share/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
mkdir /usr/share/zabbix/ && \
|
mkdir /usr/share/zabbix/ && \
|
||||||
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
cp -R /usr/share/zabbix-${ZBX_VERSION}/ui/* /usr/share/zabbix/ && \
|
||||||
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
rm -rf /usr/share/zabbix-${ZBX_VERSION}/ && \
|
||||||
|
@ -47,7 +47,7 @@ RUN set -eux && \
|
|||||||
git \
|
git \
|
||||||
pkgconf && \
|
pkgconf && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
zabbix_revision=`git rev-parse --short HEAD` && \
|
||||||
sed -i "s/{ZABBIX_REVISION}/$zabbix_revision/g" src/go/pkg/version/version.go && \
|
sed -i "s/{ZABBIX_REVISION}/$zabbix_revision/g" src/go/pkg/version/version.go && \
|
||||||
|
@ -52,7 +52,7 @@ RUN set -eux && \
|
|||||||
golang \
|
golang \
|
||||||
git && \
|
git && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
zabbix_revision=`git rev-parse --short HEAD` && \
|
||||||
sed -i "s/{ZABBIX_REVISION}/$zabbix_revision/g" src/go/pkg/version/version.go && \
|
sed -i "s/{ZABBIX_REVISION}/$zabbix_revision/g" src/go/pkg/version/version.go && \
|
||||||
|
@ -66,7 +66,7 @@ RUN set -eux && \
|
|||||||
g++ \
|
g++ \
|
||||||
golang && \
|
golang && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
zabbix_revision=`git rev-parse --short HEAD` && \
|
||||||
sed -i "s/{ZABBIX_REVISION}/$zabbix_revision/g" src/go/pkg/version/version.go && \
|
sed -i "s/{ZABBIX_REVISION}/$zabbix_revision/g" src/go/pkg/version/version.go && \
|
||||||
|
@ -144,7 +144,7 @@ RUN set -eux && REPOLIST="rhel-8-for-x86_64-baseos-rpms,rhel-8-for-x86_64-appstr
|
|||||||
dnf -y install --disablerepo "*" --enablerepo "${REPOLIST}" --setopt=install_weak_deps=False --best \
|
dnf -y install --disablerepo "*" --enablerepo "${REPOLIST}" --setopt=install_weak_deps=False --best \
|
||||||
--setopt=tsflags=nodocs ${INSTALL_PKGS} && \
|
--setopt=tsflags=nodocs ${INSTALL_PKGS} && \
|
||||||
cd /tmp/ && \
|
cd /tmp/ && \
|
||||||
git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \
|
||||||
cd /tmp/zabbix-${ZBX_VERSION} && \
|
cd /tmp/zabbix-${ZBX_VERSION} && \
|
||||||
zabbix_revision=`git rev-parse --short HEAD` && \
|
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 && \
|
||||||
|
Loading…
Reference in New Issue
Block a user