Skip to content

Commit

Permalink
Update mkcert for catalina compatibility (ddev#1804)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay authored Aug 22, 2019
1 parent 71e771e commit f48aed9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions .buildkite/testbot_maintenance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,13 @@ if ! command -v ngrok >/dev/null; then
;;
esac
fi

# Upgrade mkcert on macOS
case $os in
darwin)
brew upgrade mkcert || brew install mkcert || true
;;
windows)
choco upgrade -y mkcert
;;
esac
2 changes: 1 addition & 1 deletion containers/ddev-router/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM nginx:1.17.0

ENV MKCERT_VERSION=v1.3.0
ENV MKCERT_VERSION=v1.4.0

ENV DEBIAN_FRONTEND noninteractive
ENV DOCKER_GEN_VERSION 0.7.4
Expand Down
2 changes: 1 addition & 1 deletion containers/ddev-webserver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ENV DRUSH_LAUNCHER_VERSION=0.6.0
ENV DRUSH_LAUNCHER_FALLBACK=/usr/local/bin/drush8
ENV MAILHOG_VERSION=1.0.0
ENV BACKDROP_DRUSH_VERSION=1.0.0
ENV MKCERT_VERSION=v1.3.0
ENV MKCERT_VERSION=v1.4.0

ENV DEBIAN_FRONTEND noninteractive
ENV TERM xterm
Expand Down
4 changes: 2 additions & 2 deletions pkg/version/version.go
Original file line number Diff line number Diff line change
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 = "20190819_newer_wp_cli" // Note that this can be overridden by make
var WebTag = "20190819_update_mkcert" // Note that this can be overridden by make

// DBImg defines the default db image used for applications.
var DBImg = "drud/ddev-dbserver"
Expand All @@ -73,7 +73,7 @@ var BgsyncTag = "v1.10.0" // Note that this can be overridden by make
var RouterImage = "drud/ddev-router"

// RouterTag defines the tag used for the router.
var RouterTag = "v1.10.0" // Note that this can be overridden by make
var RouterTag = "20190819_update_mkcert" // Note that this can be overridden by make

var SSHAuthImage = "drud/ddev-ssh-agent"

Expand Down

0 comments on commit f48aed9

Please sign in to comment.