Skip to content

Commit

Permalink
Add php-imagick to web container, fixes #949 again (#1113)
Browse files Browse the repository at this point in the history
* Add php-imagick to web container, fixes #949 again

* Bump web container version
  • Loading branch information
rfay committed Sep 18, 2018
1 parent b992f6f commit 285a2b7
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 @@ -71,7 +71,8 @@ RUN apt-get -qq update && \
unzip \
rsync \
locales-all \
libpcre3 && \
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 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 && \
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Expand Up @@ -23,7 +23,7 @@ var DockerComposeFileFormatVersion = "3.6"
var WebImg = "drud/ddev-webserver"

// WebTag defines the default web image tag for drud dev
var WebTag = "20180913_locales" // Note that this can be overridden by make
var WebTag = "20180915_php_imagick" // 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 285a2b7

Please sign in to comment.