Skip to content

Commit f3e72ea

Browse files
authored
Merge branch 'main' into mafredri/fix-coderd-metadata-test
2 parents c21844e + c60ea38 commit f3e72ea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ test-postgres-docker:
630630
--name test-postgres-docker \
631631
--restart no \
632632
--detach \
633-
postgres:13 \
633+
gcr.io/coder-dev-1/postgres:13 \
634634
-c shared_buffers=1GB \
635635
-c work_mem=1GB \
636636
-c effective_cache_size=1GB \

coderd/database/gen/dump/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ func main() {
6868
"run",
6969
"--rm",
7070
"--network=host",
71-
fmt.Sprintf("postgres:%d", minimumPostgreSQLVersion),
71+
fmt.Sprintf("gcr.io/coder-dev-1/postgres:%d", minimumPostgreSQLVersion),
7272
}, cmdArgs...)
7373
}
7474
cmd := exec.Command(cmdArgs[0], cmdArgs[1:]...) //#nosec

0 commit comments

Comments
 (0)