From 38ea9df195da3ec911c6bf6e3da98963140a47bb Mon Sep 17 00:00:00 2001 From: dotneft Date: Thu, 25 May 2017 09:19:08 -0700 Subject: [PATCH] Added iputils package on Alpine Linux --- agent/alpine/Dockerfile | 1 + proxy-mysql/alpine/Dockerfile | 1 + proxy-sqlite3/alpine/Dockerfile | 1 + server-mysql/alpine/Dockerfile | 1 + server-pgsql/alpine/Dockerfile | 1 + 5 files changed, 5 insertions(+) diff --git a/agent/alpine/Dockerfile b/agent/alpine/Dockerfile index a37580a70..3e0fa0b06 100644 --- a/agent/alpine/Dockerfile +++ b/agent/alpine/Dockerfile @@ -19,6 +19,7 @@ RUN addgroup zabbix && \ chown --quiet -R zabbix:root /var/lib/zabbix && \ apk update && \ apk add ${APK_FLAGS_PERSISTANT} \ + iputils \ supervisor \ bash \ coreutils \ diff --git a/proxy-mysql/alpine/Dockerfile b/proxy-mysql/alpine/Dockerfile index 8a72036c9..bd066970a 100644 --- a/proxy-mysql/alpine/Dockerfile +++ b/proxy-mysql/alpine/Dockerfile @@ -29,6 +29,7 @@ RUN addgroup zabbix && \ mkdir -p /usr/share/doc/zabbix-proxy-${DB_TYPE} && \ apk update && \ apk add ${APK_FLAGS_PERSISTANT} \ + iputils \ supervisor \ bash \ mariadb-client-libs \ diff --git a/proxy-sqlite3/alpine/Dockerfile b/proxy-sqlite3/alpine/Dockerfile index 31b841729..181d3064c 100644 --- a/proxy-sqlite3/alpine/Dockerfile +++ b/proxy-sqlite3/alpine/Dockerfile @@ -26,6 +26,7 @@ RUN addgroup zabbix && \ mkdir -p /usr/lib/zabbix/externalscripts && \ apk update && \ apk add ${APK_FLAGS_PERSISTANT} \ + iputils \ supervisor \ bash \ sqlite-libs \ diff --git a/server-mysql/alpine/Dockerfile b/server-mysql/alpine/Dockerfile index df36644d9..f522d283f 100644 --- a/server-mysql/alpine/Dockerfile +++ b/server-mysql/alpine/Dockerfile @@ -30,6 +30,7 @@ RUN addgroup zabbix && \ mkdir -p /usr/share/doc/zabbix-server-${DB_TYPE} && \ apk update && \ apk add ${APK_FLAGS_PERSISTANT} \ + iputils \ supervisor \ bash \ mariadb-client-libs \ diff --git a/server-pgsql/alpine/Dockerfile b/server-pgsql/alpine/Dockerfile index 9cc3d6610..78de837da 100644 --- a/server-pgsql/alpine/Dockerfile +++ b/server-pgsql/alpine/Dockerfile @@ -30,6 +30,7 @@ RUN addgroup zabbix && \ mkdir -p /usr/share/doc/zabbix-server-${DB_TYPE} && \ apk update && \ apk add ${APK_FLAGS_PERSISTANT} \ + iputils \ supervisor \ bash \ postgresql-client \