Skip to content

Commit

Permalink
Add sqlite3 to webserver image (#1875)
Browse files Browse the repository at this point in the history
  • Loading branch information
heddn authored and rfay committed Oct 15, 2019
1 parent a2c1841 commit bbe07a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion containers/ddev-webserver/Dockerfile
Expand Up @@ -87,7 +87,8 @@ RUN apt-get -qq update && \
libpcre3 \
openssh-client \
php-imagick \
php-uploadprogress && \
php-uploadprogress \
sqlite3 && \
for v in $PHP_VERSIONS; do apt-get -qq install --no-install-recommends --no-install-suggests -y $v-bcmath $v-bz2 $v-curl $v-cgi $v-cli $v-common $v-fpm $v-gd $v-intl $v-json $v-mysql $v-pgsql $v-mbstring $v-opcache $v-soap $v-sqlite3 $v-readline $v-xml $v-xmlrpc $v-zip libapache2-mod-$v ; done && \
# These are items not yet available in php7.4 \
for v in php5.6 php7.0 php7.1 php7.2 php7.3; do apt-get -qq install --no-install-recommends --no-install-suggests -y $v-apcu $v-memcached $v-redis $v-xdebug ; done && \
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Expand Up @@ -49,7 +49,7 @@ var DockerComposeFileFormatVersion = "3.6"
var WebImg = "drud/ddev-webserver"

// WebTag defines the default web image tag for drud dev
var WebTag = "v1.11.0" // Note that this can be overridden by make
var WebTag = "20191014_heddn_sqlite3" // 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 bbe07a2

Please sign in to comment.