Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion graphile/graphile-pg-textsearch-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

4 changes: 2 additions & 2 deletions pgpm/cli/src/commands/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Subcommands:
Options:
--help, -h Show this help message
--name <name> Container name (default: postgres)
--image <image> Docker image (default: pyramation/postgres:17)
--image <image> Docker image (default: constructiveio/postgres-plus:18)
--port <port> Host port mapping (default: 5432)
--user <user> PostgreSQL user (default: postgres)
--password <pass> PostgreSQL password (default: password)
Expand Down Expand Up @@ -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';
Expand Down
Loading