Skip to content

Commit

Permalink
test(redshift): use updated PostgreSQL 8 Docker image
Browse files Browse the repository at this point in the history
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/
```
  • Loading branch information
joschi committed Aug 8, 2024
1 parent 2477f63 commit 0f96e8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/redshift/redshift_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
var (
opts = dktest.Options{PortRequired: true, ReadyFunc: isReady}
specs = []dktesting.ContainerSpec{
{ImageName: "postgres:8", Options: opts},
{ImageName: "joschi/postgres8:8", Options: opts},
}
)

Expand Down

0 comments on commit 0f96e8d

Please sign in to comment.