pgpm 4.14.0 → 4.14.1
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 +8 -5
- package/esm/commands/docker.js +8 -5
- package/package.json +2 -2
package/commands/docker.js
CHANGED
|
@@ -24,7 +24,7 @@ PostgreSQL Options:
|
|
|
24
24
|
--shm-size <size> Shared memory size for container (default: 2g)
|
|
25
25
|
|
|
26
26
|
Additional Services:
|
|
27
|
-
--minio Include MinIO S3-compatible object storage (
|
|
27
|
+
--minio Include MinIO S3-compatible object storage (API: 9000, Console: 9001)
|
|
28
28
|
|
|
29
29
|
General Options:
|
|
30
30
|
--help, -h Show this help message
|
|
@@ -45,12 +45,15 @@ const ADDITIONAL_SERVICES = {
|
|
|
45
45
|
minio: {
|
|
46
46
|
name: 'minio',
|
|
47
47
|
image: 'minio/minio',
|
|
48
|
-
ports: [
|
|
48
|
+
ports: [
|
|
49
|
+
{ host: 9000, container: 9000 },
|
|
50
|
+
{ host: 9001, container: 9001 },
|
|
51
|
+
],
|
|
49
52
|
env: {
|
|
50
|
-
|
|
51
|
-
|
|
53
|
+
MINIO_ROOT_USER: 'minioadmin',
|
|
54
|
+
MINIO_ROOT_PASSWORD: 'minioadmin',
|
|
52
55
|
},
|
|
53
|
-
command: ['server', '/data'],
|
|
56
|
+
command: ['server', '/data', '--console-address', ':9001'],
|
|
54
57
|
volumes: [{ name: 'minio-data', containerPath: '/data' }],
|
|
55
58
|
},
|
|
56
59
|
};
|
package/esm/commands/docker.js
CHANGED
|
@@ -22,7 +22,7 @@ PostgreSQL Options:
|
|
|
22
22
|
--shm-size <size> Shared memory size for container (default: 2g)
|
|
23
23
|
|
|
24
24
|
Additional Services:
|
|
25
|
-
--minio Include MinIO S3-compatible object storage (
|
|
25
|
+
--minio Include MinIO S3-compatible object storage (API: 9000, Console: 9001)
|
|
26
26
|
|
|
27
27
|
General Options:
|
|
28
28
|
--help, -h Show this help message
|
|
@@ -43,12 +43,15 @@ const ADDITIONAL_SERVICES = {
|
|
|
43
43
|
minio: {
|
|
44
44
|
name: 'minio',
|
|
45
45
|
image: 'minio/minio',
|
|
46
|
-
ports: [
|
|
46
|
+
ports: [
|
|
47
|
+
{ host: 9000, container: 9000 },
|
|
48
|
+
{ host: 9001, container: 9001 },
|
|
49
|
+
],
|
|
47
50
|
env: {
|
|
48
|
-
|
|
49
|
-
|
|
51
|
+
MINIO_ROOT_USER: 'minioadmin',
|
|
52
|
+
MINIO_ROOT_PASSWORD: 'minioadmin',
|
|
50
53
|
},
|
|
51
|
-
command: ['server', '/data'],
|
|
54
|
+
command: ['server', '/data', '--console-address', ':9001'],
|
|
52
55
|
volumes: [{ name: 'minio-data', containerPath: '/data' }],
|
|
53
56
|
},
|
|
54
57
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pgpm",
|
|
3
|
-
"version": "4.14.
|
|
3
|
+
"version": "4.14.1",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "PostgreSQL Package Manager - Database migration and package management CLI",
|
|
6
6
|
"main": "index.js",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"pg",
|
|
77
77
|
"pgsql"
|
|
78
78
|
],
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "8a4291a1c8809bf9063e6e29ec87bd78c94bbf57"
|
|
80
80
|
}
|