From 1b0e46dcb5beab822f178e0aeb75867988531b84 Mon Sep 17 00:00:00 2001 From: Randy Fay Date: Sat, 6 Oct 2018 13:50:39 -0600 Subject: [PATCH] Add php*-sqlite3 to web container (#1150) --- containers/ddev-webserver/Dockerfile | 2 +- pkg/version/version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/ddev-webserver/Dockerfile b/containers/ddev-webserver/Dockerfile index 36c6c81f487..06da2161cfd 100644 --- a/containers/ddev-webserver/Dockerfile +++ b/containers/ddev-webserver/Dockerfile @@ -73,7 +73,7 @@ RUN apt-get -qq update && \ locales-all \ libpcre3 \ php-imagick && \ - for v in $PHP_VERSIONS; do apt-get -qq install --no-install-recommends --no-install-suggests -y $v-bcmath $v-curl $v-cgi $v-cli $v-common $v-fpm $v-gd $v-intl $v-json $v-mysql $v-mbstring $v-memcached $v-opcache $v-redis $v-soap $v-readline $v-xdebug $v-xml $v-xmlrpc $v-zip libapache2-mod-$v ; done && \ + for v in $PHP_VERSIONS; do apt-get -qq install --no-install-recommends --no-install-suggests -y $v-bcmath $v-curl $v-cgi $v-cli $v-common $v-fpm $v-gd $v-intl $v-json $v-mysql $v-mbstring $v-memcached $v-opcache $v-redis $v-soap $v-sqlite3 $v-readline $v-xdebug $v-xml $v-xmlrpc $v-zip libapache2-mod-$v ; done && \ for v in php5.6 php7.0 php7.1; do apt-get -qq install --no-install-recommends --no-install-suggests -y $v-mcrypt; done && \ apt-get -qq autoremove -y && \ apt-get -qq clean -y && \ diff --git a/pkg/version/version.go b/pkg/version/version.go index 4e8cac8b123..72e13bd9ceb 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -25,7 +25,7 @@ var DockerComposeFileFormatVersion = "3.6" var WebImg = "drud/ddev-webserver" // WebTag defines the default web image tag for drud dev -var WebTag = "20180925_php_ini_disable_functions" // Note that this can be overridden by make +var WebTag = "20181002_sqlite" // Note that this can be overridden by make // DBImg defines the default db image used for applications. var DBImg = "drud/ddev-dbserver"