vmsan 0.1.0-alpha.18 → 0.1.0-alpha.19
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 +17 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -106,6 +106,12 @@ vmsan create --from-image node:22-alpine
|
|
|
106
106
|
# List all VMs
|
|
107
107
|
vmsan list
|
|
108
108
|
|
|
109
|
+
# Execute a command inside a VM
|
|
110
|
+
vmsan exec <vm-id> ls -la
|
|
111
|
+
|
|
112
|
+
# Interactive exec with PTY
|
|
113
|
+
vmsan exec -i <vm-id> bash
|
|
114
|
+
|
|
109
115
|
# Connect to a running VM shell
|
|
110
116
|
vmsan connect <vm-id>
|
|
111
117
|
|
|
@@ -131,16 +137,17 @@ vmsan remove <vm-id>
|
|
|
131
137
|
|
|
132
138
|
### Commands
|
|
133
139
|
|
|
134
|
-
| Command | Alias | Description
|
|
135
|
-
| ---------- | ----- |
|
|
136
|
-
| `create` | | Create and start a new microVM
|
|
137
|
-
| `list` | `ls` | List all VMs
|
|
138
|
-
| `start` | | Start a stopped VM
|
|
139
|
-
| `stop` | | Stop a running VM
|
|
140
|
-
| `remove` | `rm` | Remove a VM
|
|
141
|
-
| `
|
|
142
|
-
| `
|
|
143
|
-
| `
|
|
140
|
+
| Command | Alias | Description |
|
|
141
|
+
| ---------- | ----- | ------------------------------------ |
|
|
142
|
+
| `create` | | Create and start a new microVM |
|
|
143
|
+
| `list` | `ls` | List all VMs |
|
|
144
|
+
| `start` | | Start a stopped VM |
|
|
145
|
+
| `stop` | | Stop a running VM |
|
|
146
|
+
| `remove` | `rm` | Remove a VM |
|
|
147
|
+
| `exec` | | Execute a command inside a running VM |
|
|
148
|
+
| `connect` | | Open an interactive shell to a VM |
|
|
149
|
+
| `upload` | | Upload files to a VM |
|
|
150
|
+
| `download` | | Download files from a VM |
|
|
144
151
|
|
|
145
152
|
## Development
|
|
146
153
|
|
package/package.json
CHANGED