Skip to content

Commit

Permalink
Bump images to v1.21.3 and mutagen to 0.16.0 (#4310)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay committed Oct 19, 2022
1 parent 8bf079d commit 28b9e84
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion containers/ddev-webserver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
### Build ddev-php-base from ddev-webserver-base
### ddev-php-base is the basic of ddev-php-prod
### and ddev-webserver-* (For DDEV-Local)
FROM drud/ddev-php-base:20221016_bump_max_input_vars as ddev-webserver-base
FROM drud/ddev-php-base:v1.21.3 as ddev-webserver-base

ENV BACKDROP_DRUSH_VERSION=1.4.0
ENV MKCERT_VERSION=v1.4.6
Expand Down
10 changes: 5 additions & 5 deletions pkg/versionconstants/versionconstants.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ var SegmentKey = ""
var WebImg = "drud/ddev-webserver"

// WebTag defines the default web image tag
var WebTag = "20221016_bump_max_input_vars" // Note that this can be overridden by make
var WebTag = "v1.21.3" // Note that this can be overridden by make

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

// BaseDBTag is the main tag, DBTag is constructed from it
var BaseDBTag = "v1.21.2"
var BaseDBTag = "v1.21.3"

// DBAImg defines the default phpmyadmin image tag used for applications.
var DBAImg = "phpmyadmin"
Expand All @@ -35,15 +35,15 @@ var DBATag = "5" // Note that this can be overridden by make
var RouterImage = "drud/ddev-router"

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

// SSHAuthImage is image for agent
// var SSHAuthImage = "drud/ddev-ssh-agent"
var SSHAuthImage = "drud/ddev-ssh-agent"

// SSHAuthTag is ssh-agent auth tag
// var SSHAuthTag = "v1.19.0"
var SSHAuthTag = "v1.21.2"
var SSHAuthTag = "v1.21.3"

// Busybox is used a couple of places for a quick-pull
var BusyboxImage = "busybox:stable"
Expand All @@ -54,7 +54,7 @@ var BUILDINFO = "BUILDINFO should have new info"
// MutagenVersion is filled with the version we find for mutagen in use
var MutagenVersion = ""

const RequiredMutagenVersion = "0.16.0-rc1"
const RequiredMutagenVersion = "0.16.0"

// GetWebImage returns the correctly formatted web image:tag reference
func GetWebImage() string {
Expand Down

0 comments on commit 28b9e84

Please sign in to comment.