pgpm 2.10.11 → 2.10.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/commands/docker.js +2 -2
- package/esm/commands/docker.js +2 -2
- package/package.json +3 -3
package/commands/docker.js
CHANGED
|
@@ -16,7 +16,7 @@ Subcommands:
|
|
|
16
16
|
Options:
|
|
17
17
|
--help, -h Show this help message
|
|
18
18
|
--name <name> Container name (default: postgres)
|
|
19
|
-
--image <image> Docker image (default:
|
|
19
|
+
--image <image> Docker image (default: pyramation/postgres:17)
|
|
20
20
|
--port <port> Host port mapping (default: 5432)
|
|
21
21
|
--user <user> PostgreSQL user (default: postgres)
|
|
22
22
|
--password <pass> PostgreSQL password (default: password)
|
|
@@ -175,7 +175,7 @@ exports.default = async (argv, _prompter, _options) => {
|
|
|
175
175
|
return;
|
|
176
176
|
}
|
|
177
177
|
const name = args.name || 'postgres';
|
|
178
|
-
const image = args.image || '
|
|
178
|
+
const image = args.image || 'pyramation/postgres:17';
|
|
179
179
|
const port = typeof args.port === 'number' ? args.port : 5432;
|
|
180
180
|
const user = args.user || 'postgres';
|
|
181
181
|
const password = args.password || 'password';
|
package/esm/commands/docker.js
CHANGED
|
@@ -14,7 +14,7 @@ Subcommands:
|
|
|
14
14
|
Options:
|
|
15
15
|
--help, -h Show this help message
|
|
16
16
|
--name <name> Container name (default: postgres)
|
|
17
|
-
--image <image> Docker image (default:
|
|
17
|
+
--image <image> Docker image (default: pyramation/postgres:17)
|
|
18
18
|
--port <port> Host port mapping (default: 5432)
|
|
19
19
|
--user <user> PostgreSQL user (default: postgres)
|
|
20
20
|
--password <pass> PostgreSQL password (default: password)
|
|
@@ -173,7 +173,7 @@ export default async (argv, _prompter, _options) => {
|
|
|
173
173
|
return;
|
|
174
174
|
}
|
|
175
175
|
const name = args.name || 'postgres';
|
|
176
|
-
const image = args.image || '
|
|
176
|
+
const image = args.image || 'pyramation/postgres:17';
|
|
177
177
|
const port = typeof args.port === 'number' ? args.port : 5432;
|
|
178
178
|
const user = args.user || 'postgres';
|
|
179
179
|
const password = args.password || 'password';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pgpm",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.14",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "PostgreSQL Package Manager - Database migration and package management CLI",
|
|
6
6
|
"main": "index.js",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@inquirerer/utils": "^3.1.3",
|
|
50
|
-
"@pgpmjs/core": "^4.
|
|
50
|
+
"@pgpmjs/core": "^4.15.0",
|
|
51
51
|
"@pgpmjs/env": "^2.9.4",
|
|
52
52
|
"@pgpmjs/logger": "^1.3.7",
|
|
53
53
|
"@pgpmjs/types": "^2.14.1",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"pg",
|
|
77
77
|
"pgsql"
|
|
78
78
|
],
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "15e8f92ee6ec7bfebd6647dec743e4235b0362ac"
|
|
80
80
|
}
|