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.
Files changed (2) hide show
  1. package/README.md +17 -10
  2. 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
- | `connect` | | Open an interactive shell to a VM |
142
- | `upload` | | Upload files to a VM |
143
- | `download` | | Download files from a VM |
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vmsan",
3
- "version": "0.1.0-alpha.18",
3
+ "version": "0.1.0-alpha.19",
4
4
  "description": "Firecracker microVM sandbox toolkit",
5
5
  "homepage": "https://github.com/angelorc/vmsan",
6
6
  "bugs": "https://github.com/angelorc/vmsan/issues",