diff --git a/web-apache-mysql/alpine/Dockerfile b/web-apache-mysql/alpine/Dockerfile index 6290606d4..3e312c5ae 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 8d5fcba69..683014c39 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 a109ba5c7..b203c95a9 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 d8f1cd570..a7b734139 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 1da0b384e..2b51e1b3e 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 372dd20ab..fd35769d3 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 96b344c20..af34cb200 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 de62c7315..2c88e7d34 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 0f125bd25..361199cdb 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 d22e94223..0f5f955fe 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 94f6c45f2..e45ff6b99 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 50aad1c84..024d33a8f 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 \