Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump versions: drush to 8.3.1, node to 12.x in web container, fixes #1907 #1909

Merged
merged 3 commits into from Nov 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions containers/ddev-webserver/Dockerfile
Expand Up @@ -4,7 +4,7 @@ ENV PHP_VERSIONS="php5.6 php7.0 php7.1 php7.2 php7.3 php7.4"
ENV PHP_DEFAULT_VERSION="7.2"
ENV PHP_INI=/etc/php/$PHP_DEFAULT_VERSION/fpm/php.ini

ENV DRUSH_VERSION=8.3.0
ENV DRUSH_VERSION=8.3.1
ENV DRUSH_LAUNCHER_VERSION=0.6.0
ENV DRUSH_LAUNCHER_FALLBACK=/usr/local/bin/drush8
ENV MAILHOG_VERSION=1.0.0
Expand Down Expand Up @@ -57,7 +57,7 @@ RUN apt-get -qq update && \
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
echo "deb http://nginx.org/packages/debian/ stretch nginx" >> /etc/apt/sources.list && \
curl -sL https://deb.nodesource.com/setup_8.x | bash - && \
curl -sL https://deb.nodesource.com/setup_12.x | bash - && \
apt-get -qq update && \
apt-get -qq install --no-install-recommends --no-install-suggests -y \
less \
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 = "20191025_mkcert_creation" // Note that this can be overridden by make
var WebTag = "20191104_heddn_drush_node_version" // Note that this can be overridden by make

// DBImg defines the default db image used for applications.
var DBImg = "drud/ddev-dbserver"
Expand Down