Skip to content

Commit

Permalink
build: bump docker image tags for v1.22.0 (#5179)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay committed Jul 21, 2023
1 parent cba5bf7 commit 41f2c00
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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:v1.22.0-beta1 as ddev-webserver-base
FROM ddev/ddev-php-base:v1.22.0 as ddev-webserver-base

ENV BACKDROP_DRUSH_VERSION=1.4.0
ENV DEBIAN_FRONTEND=noninteractive
Expand Down
8 changes: 4 additions & 4 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 = "20230707_fix_process_group_kill" // Note that this can be overridden by make
var WebTag = "v1.22.0" // 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 = "v1.22.0-beta4"
var BaseDBTag = "v1.22.0"

const TraditionalRouterImage = "ddev/ddev-router:v1.22.0-beta1"
const TraditionalRouterImage = "ddev/ddev-router:v1.22.0"
const TraefikRouterImage = "traefik:v2.10"

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

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

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

0 comments on commit 41f2c00

Please sign in to comment.