Skip to content

Commit c60ea38

Browse files
authored
chore: use gcr.io for postgres image in CI (coder#7935)
1 parent e474468 commit c60ea38

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)