Skip to content

Commit

Permalink
build: bump images to v1.22.2, fixes #5310 (#5333)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay committed Sep 15, 2023
1 parent fb5c162 commit d12fbb4
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 ddev/ddev-php-base:20230831_replace_mailhog_with_mailpit as ddev-webserver-base
FROM ddev/ddev-php-base:v1.22.2 as ddev-webserver-base

ENV BACKDROP_DRUSH_VERSION=1.4.0
ENV DEBIAN_FRONTEND=noninteractive
Expand Down
10 changes: 5 additions & 5 deletions pkg/versionconstants/versionconstants.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@ var AmplitudeAPIKey = ""
var WebImg = "ddev/ddev-webserver"

// WebTag defines the default web image tag
var WebTag = "20230831_replace_mailhog_with_mailpit" // Note that this can be overridden by make
var WebTag = "v1.22.2" // Note that this can be overridden by make

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

// BaseDBTag is the main tag, DBTag is constructed from it
var BaseDBTag = "20230911_fix_dbserver"
var BaseDBTag = "v1.22.2"

const TraditionalRouterImage = "ddev/ddev-nginx-proxy-router:20230816_traefik_image"
const TraefikRouterImage = "ddev/ddev-traefik-router:20230816_traefik_image"
const TraditionalRouterImage = "ddev/ddev-nginx-proxy-router:v1.22.2"
const TraefikRouterImage = "ddev/ddev-traefik-router:v1.22.2"

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

// SSHAuthTag is ssh-agent auth tag
var SSHAuthTag = "v1.22.0"
var SSHAuthTag = "v1.22.2"

// Busybox is used a couple of places for a quick-pull
var BusyboxImage = "busybox:stable"
Expand Down

0 comments on commit d12fbb4

Please sign in to comment.