Skip to content

Commit f7a9709

Browse files
committed
image
1 parent 2e1a2f2 commit f7a9709

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/run-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107

108108
services:
109109
pg_db:
110-
image: ghcr.io/constructive-io/docker/postgres-plus:17
110+
image: pyramation/postgres:17
111111
env:
112112
POSTGRES_USER: postgres
113113
POSTGRES_PASSWORD: password

pgpm/cli/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
77

88
### Bug Fixes
99

10-
- update default Docker image to ghcr.io/constructive-io/docker/postgres-plus:17 ([aec76a0](https://github.com/constructive-io/constructive/commit/aec76a059d55ac5e6523968e587f6c63eb58b234))
10+
- update default Docker image to pyramation/postgres:17 ([aec76a0](https://github.com/constructive-io/constructive/commit/aec76a059d55ac5e6523968e587f6c63eb58b234))
1111

1212
## [2.10.10](https://github.com/constructive-io/constructive/compare/pgpm@2.10.9...pgpm@2.10.10) (2026-01-09)
1313

pgpm/cli/src/commands/docker.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Subcommands:
1616
Options:
1717
--help, -h Show this help message
1818
--name <name> Container name (default: postgres)
19-
--image <image> Docker image (default: ghcr.io/constructive-io/docker/postgres-plus:17)
19+
--image <image> Docker image (default: pyramation/postgres:17)
2020
--port <port> Host port mapping (default: 5432)
2121
--user <user> PostgreSQL user (default: postgres)
2222
--password <pass> PostgreSQL password (default: password)
@@ -211,9 +211,9 @@ export default async (
211211
await cliExitWithError('No subcommand provided. Use "start" or "stop".');
212212
return;
213213
}
214-
214+
pyramation/postgres:17
215215
const name = (args.name as string) || 'postgres';
216-
const image = (args.image as string) || 'ghcr.io/constructive-io/docker/postgres-plus:17';
216+
const image = (args.image as string) || 'pyramation/postgres:17';
217217
const port = typeof args.port === 'number' ? args.port : 5432;
218218
const user = (args.user as string) || 'postgres';
219219
const password = (args.password as string) || 'password';

0 commit comments

Comments
 (0)