diff --git a/web-apache-mysql/alpine/Dockerfile b/web-apache-mysql/alpine/Dockerfile index 1223e891d..74b8efde9 100644 --- a/web-apache-mysql/alpine/Dockerfile +++ b/web-apache-mysql/alpine/Dockerfile @@ -34,6 +34,7 @@ RUN addgroup zabbix && \ apk add ${APK_FLAGS_PERSISTENT} \ apache2 \ bash \ + curl \ mariadb-client \ mariadb-client-libs \ php7-apache2 \ diff --git a/web-apache-mysql/centos/Dockerfile b/web-apache-mysql/centos/Dockerfile index 932d31c43..a93349bf4 100644 --- a/web-apache-mysql/centos/Dockerfile +++ b/web-apache-mysql/centos/Dockerfile @@ -68,6 +68,7 @@ RUN groupadd --system zabbix && \ yum ${YUM_FLAGS_COMMON} makecache && \ yum ${YUM_FLAGS_PERSISTENT} install \ dejavu-sans-fonts \ + curl \ httpd \ mariadb \ php \ diff --git a/web-apache-mysql/ubuntu/Dockerfile b/web-apache-mysql/ubuntu/Dockerfile index 9b6aad413..e2fd5f8b1 100644 --- a/web-apache-mysql/ubuntu/Dockerfile +++ b/web-apache-mysql/ubuntu/Dockerfile @@ -36,6 +36,7 @@ RUN locale-gen $LC_ALL && \ apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_PERSISTENT} install \ apache2 \ + curl \ libapache2-mod-php5 \ mysql-client \ php5-gd \ diff --git a/web-apache-pgsql/alpine/Dockerfile b/web-apache-pgsql/alpine/Dockerfile index 9bb06eff6..d25312c6b 100644 --- a/web-apache-pgsql/alpine/Dockerfile +++ b/web-apache-pgsql/alpine/Dockerfile @@ -34,6 +34,7 @@ RUN addgroup zabbix && \ apk add ${APK_FLAGS_PERSISTENT} \ apache2 \ bash \ + curl \ php7-apache2 \ php7-bcmath \ php7-ctype \ diff --git a/web-apache-pgsql/centos/Dockerfile b/web-apache-pgsql/centos/Dockerfile index 54fad4949..a6aaec469 100644 --- a/web-apache-pgsql/centos/Dockerfile +++ b/web-apache-pgsql/centos/Dockerfile @@ -69,6 +69,7 @@ RUN groupadd --system zabbix && \ yum ${YUM_FLAGS_PERSISTENT} install epel-release && \ yum ${YUM_FLAGS_PERSISTENT} install \ dejavu-sans-fonts \ + curl \ httpd \ php \ php-bcmath \ diff --git a/web-apache-pgsql/ubuntu/Dockerfile b/web-apache-pgsql/ubuntu/Dockerfile index e6b276700..d04d7d9b5 100644 --- a/web-apache-pgsql/ubuntu/Dockerfile +++ b/web-apache-pgsql/ubuntu/Dockerfile @@ -36,6 +36,7 @@ RUN locale-gen $LC_ALL && \ apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_PERSISTENT} install \ apache2 \ + curl \ libapache2-mod-php5 \ php5-gd \ php5-json \ diff --git a/web-nginx-mysql/alpine/Dockerfile b/web-nginx-mysql/alpine/Dockerfile index 7f034a489..200e082f1 100644 --- a/web-nginx-mysql/alpine/Dockerfile +++ b/web-nginx-mysql/alpine/Dockerfile @@ -33,6 +33,7 @@ RUN addgroup zabbix && \ apk update && \ apk add ${APK_FLAGS_PERSISTENT} \ bash \ + curl \ mariadb-client \ mariadb-client-libs \ nginx \ diff --git a/web-nginx-mysql/centos/Dockerfile b/web-nginx-mysql/centos/Dockerfile index 9f74d37ac..ea11df293 100644 --- a/web-nginx-mysql/centos/Dockerfile +++ b/web-nginx-mysql/centos/Dockerfile @@ -70,6 +70,7 @@ RUN groupadd --system zabbix && \ yum ${YUM_FLAGS_PERSISTENT} install epel-release && \ yum ${YUM_FLAGS_PERSISTENT} install \ dejavu-sans-fonts \ + curl \ mariadb \ nginx \ php-bcmath \ diff --git a/web-nginx-mysql/ubuntu/Dockerfile b/web-nginx-mysql/ubuntu/Dockerfile index ec1cdc0a7..f48448906 100644 --- a/web-nginx-mysql/ubuntu/Dockerfile +++ b/web-nginx-mysql/ubuntu/Dockerfile @@ -41,6 +41,7 @@ RUN locale-gen $LC_ALL && \ echo "deb http://nginx.org/packages/ubuntu/ $DISTRIB_CODENAME nginx" >> /etc/apt/sources.list.d/nginx.list && \ apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_PERSISTENT} install \ + curl \ mysql-client \ nginx \ php5-fpm \ diff --git a/web-nginx-pgsql/alpine/Dockerfile b/web-nginx-pgsql/alpine/Dockerfile index 720d7495e..75eea81ee 100644 --- a/web-nginx-pgsql/alpine/Dockerfile +++ b/web-nginx-pgsql/alpine/Dockerfile @@ -33,6 +33,7 @@ RUN addgroup zabbix && \ apk update && \ apk add ${APK_FLAGS_PERSISTENT} \ bash \ + curl \ nginx \ php7-bcmath \ php7-ctype \ diff --git a/web-nginx-pgsql/centos/Dockerfile b/web-nginx-pgsql/centos/Dockerfile index fe4f5ad4c..cc360b993 100644 --- a/web-nginx-pgsql/centos/Dockerfile +++ b/web-nginx-pgsql/centos/Dockerfile @@ -70,6 +70,7 @@ RUN groupadd --system zabbix && \ yum ${YUM_FLAGS_PERSISTENT} install epel-release && \ yum ${YUM_FLAGS_PERSISTENT} install supervisor \ dejavu-sans-fonts \ + curl \ nginx \ postgresql \ php-bcmath \ diff --git a/web-nginx-pgsql/ubuntu/Dockerfile b/web-nginx-pgsql/ubuntu/Dockerfile index 013a1add5..5a2627314 100644 --- a/web-nginx-pgsql/ubuntu/Dockerfile +++ b/web-nginx-pgsql/ubuntu/Dockerfile @@ -41,6 +41,7 @@ RUN locale-gen $LC_ALL && \ echo "deb http://nginx.org/packages/ubuntu/ $DISTRIB_CODENAME nginx" >> /etc/apt/sources.list.d/nginx.list && \ apt-get ${APT_FLAGS_COMMON} update && \ apt-get ${APT_FLAGS_PERSISTENT} install \ + curl \ nginx \ php5-fpm \ php5-gd \