vercel-vm-factory 0.2.8 → 0.3.8
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/README.md +1 -1
- package/deploy-vm.mjs +1 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Vercel VM Factory
|
|
2
2
|
|
|
3
|
-
Create a tiny Vercel Container deployment: copy `wsterm` from `ghcr.io/v1xingyue/ws-shell:v1.
|
|
3
|
+
Create a tiny Vercel Container deployment: copy `wsterm` from `ghcr.io/v1xingyue/ws-shell:v1.8.alpine` into a selected base image, then deploy with Vercel CLI.
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
npx vercel-vm-factory create \
|
package/deploy-vm.mjs
CHANGED
|
@@ -310,10 +310,7 @@ async function doctor() {
|
|
|
310
310
|
printKeyValue("base", defaults.base || "not set");
|
|
311
311
|
printKeyValue("project", defaults.project || "not set");
|
|
312
312
|
printKeyValue("scope", defaults.scope || "not set");
|
|
313
|
-
printKeyValue(
|
|
314
|
-
"source image",
|
|
315
|
-
defaults.from || "ghcr.io/v1xingyue/ws-shell:v1.1.alpine",
|
|
316
|
-
);
|
|
313
|
+
printKeyValue("source image", defaults.from || defaultWsShellImage);
|
|
317
314
|
printKeyValue("auth mode", defaults["auth-mode"] || "not set");
|
|
318
315
|
printKeyValue(
|
|
319
316
|
"auth user",
|