Skip to content

Commit 0f96e8d

Browse files
committed
test(redshift): use updated PostgreSQL 8 Docker image
Current versions of the Docker Engine stopped supporting old Docker images using Docker Image Format v1 and Docker Image manifest v2, schema 1. ``` dktest.go:53: Error parsing image pull response: [DEPRECATION NOTICE] Docker Image Format v1 and Docker Image manifest version 2, schema 1 support is disabled by default and will be removed in an upcoming release. Suggest the author of docker.io/library/postgres:8 to upgrade the image to the OCI Format or Docker Image manifest v2, schema 2. More information at https://docs.docker.com/go/deprecated-image-specs/ ```
1 parent 2477f63 commit 0f96e8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/redshift/redshift_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
var (
3232
opts = dktest.Options{PortRequired: true, ReadyFunc: isReady}
3333
specs = []dktesting.ContainerSpec{
34-
{ImageName: "postgres:8", Options: opts},
34+
{ImageName: "joschi/postgres8:8", Options: opts},
3535
}
3636
)
3737

0 commit comments

Comments
 (0)