Skip to content

Commit

Permalink
Add php*-sqlite3 to web container (#1150)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay committed Oct 6, 2018
1 parent 3726f95 commit 1b0e46d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion containers/ddev-webserver/Dockerfile
Expand Up @@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Expand Up @@ -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"
Expand Down

0 comments on commit 1b0e46d

Please sign in to comment.