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 5ac1f33 commit af50872Copy full SHA for af50872
pkg/cloud/sql/sql.go
@@ -136,7 +136,7 @@ func (l *LocalSqlServer) start() error {
136
return err
137
}
138
139
- err = dockerClient.ImagePull("postgres:latest", types.ImagePullOptions{
+ err = dockerClient.ImagePull("postgres:17.6", types.ImagePullOptions{
140
All: false,
141
})
142
if err != nil {
@@ -164,7 +164,7 @@ func (l *LocalSqlServer) start() error {
164
_ = newLis.Close()
165
166
l.containerId, err = dockerClient.ContainerCreate(&container.Config{
167
- Image: "postgres",
+ Image: "postgres:17.6",
168
Env: []string{
169
"POSTGRES_PASSWORD=localsecret",
170
"PGDATA=/var/lib/postgresql/data/pgdata",
0 commit comments