diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index 25fb6a658..66203656c 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -120,7 +120,7 @@ jobs: services: pg_db: - image: pyramation/postgres:17 + image: ghcr.io/constructive-io/docker/postgres-plus:18 env: POSTGRES_USER: postgres POSTGRES_PASSWORD: password diff --git a/graphile/graphile-pg-textsearch-plugin/README.md b/graphile/graphile-pg-textsearch-plugin/README.md index 32ce4f230..ac3f13d9e 100644 --- a/graphile/graphile-pg-textsearch-plugin/README.md +++ b/graphile/graphile-pg-textsearch-plugin/README.md @@ -117,7 +117,7 @@ CREATE INDEX articles_body_idx ON articles USING bm25(body) ## Testing ```sh -# requires pyramation/postgres:17 Docker image with pg_textsearch pre-installed +# requires constructiveio/postgres-plus:18 Docker image with pg_textsearch pre-installed pnpm --filter graphile-pg-textsearch-plugin test ``` diff --git a/pgpm/cli/src/commands/docker.ts b/pgpm/cli/src/commands/docker.ts index 435655cd6..e84fcfd39 100644 --- a/pgpm/cli/src/commands/docker.ts +++ b/pgpm/cli/src/commands/docker.ts @@ -15,7 +15,7 @@ Subcommands: Options: --help, -h Show this help message --name Container name (default: postgres) - --image Docker image (default: pyramation/postgres:17) + --image Docker image (default: constructiveio/postgres-plus:18) --port Host port mapping (default: 5432) --user PostgreSQL user (default: postgres) --password PostgreSQL password (default: password) @@ -211,7 +211,7 @@ export default async ( return; } const name = (args.name as string) || 'postgres'; - const image = (args.image as string) || 'pyramation/postgres:17'; + const image = (args.image as string) || 'constructiveio/postgres-plus:18'; const port = typeof args.port === 'number' ? args.port : 5432; const user = (args.user as string) || 'postgres'; const password = (args.password as string) || 'password';