diff --git a/web-apache-mysql/alpine/Dockerfile b/web-apache-mysql/alpine/Dockerfile index 29d9c01e7..bba0f5cb9 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 a47a3ba0e..43e5e2ffb 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 9c681c329..5f6bb6da3 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 5d68a3980..aabca42ac 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 301317adb..622fef909 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 82bae2310..8e3fe16f7 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 6af5f7b91..8230938f9 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 1fc75ad1c..8085d1d23 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 dc378b249..918dca62e 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 71f149bbd..3e413024d 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 f3960fffa..d783c534f 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 763c1e73c..8a7a3adb9 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 \