aboutsummaryrefslogtreecommitdiff
path: root/devtools/docker
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/docker')
-rw-r--r--devtools/docker/compose.yaml12
1 files changed, 6 insertions, 6 deletions
diff --git a/devtools/docker/compose.yaml b/devtools/docker/compose.yaml
index 52a029f0..dd724543 100644
--- a/devtools/docker/compose.yaml
+++ b/devtools/docker/compose.yaml
@@ -31,7 +31,7 @@ services:
depends_on:
- db
# This should match the version we are using on Cloud Run.
- image: golang:1.21rc3
+ image: golang:1.22rc1
environment:
<<: [*database-variables, *go-variables]
GO_DISCOVERY_TESTDB: ${GO_DISCOVERY_TESTDB:-"true"}
@@ -42,7 +42,7 @@ services:
- ../../:/pkgsite
working_dir: /pkgsite
searchtest:
- image: golang:1.21rc3
+ image: golang:1.22rc1
depends_on:
- frontend
environment:
@@ -53,7 +53,7 @@ services:
- ../../:/pkgsite
working_dir: /pkgsite
api:
- image: golang:1.21rc3
+ image: golang:1.22rc1
depends_on:
- frontend
environment:
@@ -65,7 +65,7 @@ services:
working_dir: /pkgsite
frontend:
# This should match the version we are using on AppEngine.
- image: golang:1.21rc3
+ image: golang:1.22rc1
depends_on:
- db
command: bash -c "
@@ -82,7 +82,7 @@ services:
working_dir: /pkgsite
seeddb:
# This should match the version we are using on Cloud Run.
- image: golang:1.21rc3
+ image: golang:1.22rc1
depends_on:
- db
# Note: technically we should check that migrations have completed before
@@ -135,7 +135,7 @@ services:
shm_size: 8G
go:
# This should match the version we are using on Cloud Run.
- image: golang:1.21rc3
+ image: golang:1.22rc1
entrypoint: go
environment:
<<: [*database-variables, *go-variables]