cloudron 5.1.0 → 5.1.3
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/bin/cloudron +9 -9
- package/package.json +2 -2
package/bin/cloudron
CHANGED
|
@@ -64,7 +64,7 @@ backupCommand.command('decrypt-dir <indir> <outdir>')
|
|
|
64
64
|
.action(backupTools.decryptDir);
|
|
65
65
|
|
|
66
66
|
backupCommand.command('decrypt-filename <path>')
|
|
67
|
-
.description('
|
|
67
|
+
.description('Decrypt a file name')
|
|
68
68
|
.option('--password <password>', 'password')
|
|
69
69
|
.action(backupTools.decryptFilename);
|
|
70
70
|
|
|
@@ -112,7 +112,7 @@ program.command('clone')
|
|
|
112
112
|
program.command('configure')
|
|
113
113
|
.description('Change location of an app')
|
|
114
114
|
.option('--app <id/location>', 'App id or location')
|
|
115
|
-
.option('--no-wait', 'Wait for healthcheck to succeed [false]'
|
|
115
|
+
.option('--no-wait', 'Wait for healthcheck to succeed [false]')
|
|
116
116
|
.option('-p, --port-bindings [PORT=port,...]', 'Query port bindings')
|
|
117
117
|
.option('-l, --location <location>', 'Location')
|
|
118
118
|
.option('-s, --secondary-domains [DOMAIN=domain,...]', 'Query/Set secondary domains')
|
|
@@ -192,12 +192,12 @@ program.command('init')
|
|
|
192
192
|
program.command('install')
|
|
193
193
|
.description('Install or update app')
|
|
194
194
|
.option('--image <docker image>', 'Docker image')
|
|
195
|
-
.option('--no-wait', 'Wait for healthcheck to succeed [false]'
|
|
195
|
+
.option('--no-wait', 'Wait for healthcheck to succeed [false]')
|
|
196
196
|
.option('-p, --port-bindings [PORT=port,...]', 'Query/Set port bindings')
|
|
197
197
|
.option('-l, --location <domain>', 'Subdomain or full domain')
|
|
198
198
|
.option('-s, --secondary-domains [DOMAIN=domain,...]', 'Query/Set secondary domains')
|
|
199
199
|
.option('--appstore-id <appid[@version]>', 'Use app from the store')
|
|
200
|
-
.option('--no-sso', 'Disable Cloudron SSO [false]'
|
|
200
|
+
.option('--no-sso', 'Disable Cloudron SSO [false]')
|
|
201
201
|
.option('--debug [cmd]', 'Enable debug mode')
|
|
202
202
|
.option('--readonly', 'Mount filesystem readonly. Default is read/write in debug mode.')
|
|
203
203
|
.action(actions.install);
|
|
@@ -257,26 +257,26 @@ program.command('repair')
|
|
|
257
257
|
.description('Repair an installed application (re-configure)')
|
|
258
258
|
.option('--app <id/location>', 'App id or location')
|
|
259
259
|
.option('--image <docker image>', 'Docker image')
|
|
260
|
-
.option('--no-wait', 'Wait for healthcheck to succeed [false]'
|
|
260
|
+
.option('--no-wait', 'Wait for healthcheck to succeed [false]')
|
|
261
261
|
.action(actions.repair);
|
|
262
262
|
|
|
263
263
|
program.command('restore')
|
|
264
264
|
.description('Restore app from known backup')
|
|
265
265
|
.option('--app <id/location>', 'App id or location')
|
|
266
266
|
.option('--backup <backup>', 'Backup id')
|
|
267
|
-
.option('--no-wait', 'Wait for healthcheck to succeed [false]'
|
|
267
|
+
.option('--no-wait', 'Wait for healthcheck to succeed [false]')
|
|
268
268
|
.action(actions.restore);
|
|
269
269
|
|
|
270
270
|
program.command('restart')
|
|
271
271
|
.description('Restart an installed application')
|
|
272
272
|
.option('--app <id/location>', 'App id or location')
|
|
273
|
-
.option('--no-wait', 'Wait for healthcheck to succeed [false]'
|
|
273
|
+
.option('--no-wait', 'Wait for healthcheck to succeed [false]')
|
|
274
274
|
.action(actions.restart);
|
|
275
275
|
|
|
276
276
|
program.command('start')
|
|
277
277
|
.description('Start an installed application')
|
|
278
278
|
.option('--app <id/location>', 'App id or location')
|
|
279
|
-
.option('--no-wait', 'Wait for healthcheck to succeed [false]'
|
|
279
|
+
.option('--no-wait', 'Wait for healthcheck to succeed [false]')
|
|
280
280
|
.action(actions.start);
|
|
281
281
|
|
|
282
282
|
program.command('stop')
|
|
@@ -300,7 +300,7 @@ program.command('update')
|
|
|
300
300
|
.option('--appstore-id <appid[@version]>', 'Use app from the store')
|
|
301
301
|
.option('--image <docker image>', 'Docker image')
|
|
302
302
|
.option('--no-backup', 'Skip backup [false]', false)
|
|
303
|
-
.option('--no-wait', 'Wait for healthcheck to succeed [false]'
|
|
303
|
+
.option('--no-wait', 'Wait for healthcheck to succeed [false]')
|
|
304
304
|
.option('--no-force', 'Match appstore id and manifest id before updating', true)
|
|
305
305
|
.action(actions.update);
|
|
306
306
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudron",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Cloudron Commandline Tool",
|
|
6
6
|
"main": "main.js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"author": "Cloudron Developers <support@cloudron.io>",
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"async": "^3.2.4",
|
|
21
|
-
"cloudron-manifestformat": "^5.
|
|
21
|
+
"cloudron-manifestformat": "^5.18.0",
|
|
22
22
|
"commander": "^9.4.0",
|
|
23
23
|
"debug": "^4.3.4",
|
|
24
24
|
"delay": "^5.0.0",
|