Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e474468 commit c60ea38Copy full SHA for c60ea38
Makefile
@@ -630,7 +630,7 @@ test-postgres-docker:
630
--name test-postgres-docker \
631
--restart no \
632
--detach \
633
- postgres:13 \
+ gcr.io/coder-dev-1/postgres:13 \
634
-c shared_buffers=1GB \
635
-c work_mem=1GB \
636
-c effective_cache_size=1GB \
coderd/database/gen/dump/main.go
@@ -68,7 +68,7 @@ func main() {
68
"run",
69
"--rm",
70
"--network=host",
71
- fmt.Sprintf("postgres:%d", minimumPostgreSQLVersion),
+ fmt.Sprintf("gcr.io/coder-dev-1/postgres:%d", minimumPostgreSQLVersion),
72
}, cmdArgs...)
73
}
74
cmd := exec.Command(cmdArgs[0], cmdArgs[1:]...) //#nosec
0 commit comments