smol-machines/smolvm

▲ 40 stars today★ 6,167⑂ 297

Branchable computing by using a portable, lightweight, self-contained virtual machine

About smol-machines/smolvm

smol-machines/smolvm is an open-source project on GitHub, mainly written in Rust. Branchable computing by using a portable, lightweight, self-contained virtual machine It currently holds 6,167 stars and 297 forks with 0 open issues, and was last pushed on an unknown date (repository created unknown).

Project Overview

Git Homed tracks it on the Today's Trending board, currently at rank #65 with 40 new stars today.

GitHub Repository Details

Repository smol-machines/smolvm · default branch - · size 0 KB · watchers 0 · source: GitHub REST API and repository README

README

https://github.com/smol-machines/smolvm/blob/HEAD/smol machines

https://github.com/smol-machines/smolvm/blob/HEAD/Discord https://github.com/smol-machines/smolvm/blob/HEAD/Release https://github.com/smol-machines/smolvm/blob/HEAD/License

smolvm ======

Ship and run software with isolation by default.

This is a CLI tool that lets you: 1. Manage and run custom Linux virtual machines locally with: sub-second cold start, cross-platform (macOS, Linux, Windows), elastic memory usage. 2. Pack a stateful virtual machine into a single file (.smolmachine) to rehydrate on any supported platform.

Install -------

# install (macOS + Linux)
curl -sSL https://smolmachines.com/install.sh | bash

for coding agents: install + discover all commands

curl -sSL https://smolmachines.com/install.sh | bash && smolvm --help

Or download from GitHub Releases, and place it into ~/.local/share/.

Windows: download the windows-x86_64 release (bundles krun.dll + libkrunfw.dll), unzip it, and run smolvm.exe. Requires the Windows Hypervisor Platform (WHP) feature enabled.

Quick Start -----------

# run a command in an ephemeral VM (cleaned up after exit)
smolvm machine run --net --image alpine -- sh -c "echo 'Hello world from a microVM' && uname -a"

interactive shell

smolvm machine run --net -it --image alpine -- /bin/sh

inside the VM: apk add sl && sl && exit

Smolfile --------

A Smolfile declares a machine in TOML, the equivalent of a Dockerfile or a cloud-init file, but for a whole VM: image, resources, network policy, mounts, ports, and setup commands in one checked-in file.

image = "python:3.12-alpine"
net = true
cpus = 4
memory = 4096

ports = ["8000:8000", "5173-5180:5173-5180"] volumes = ["./src:/app"] init = ["pip install -r /app/requirements.txt"]

[network] allow_hosts = ["api.stripe.com", "pypi.org"]

[auth] ssh_agent = true

smolvm machine create --name myvm -s Smolfile   # or --smolfile 
smolvm machine start --name myvm

Port mappings accept a single port ("8080"), an explicit mapping ("8080:80"), or equal-length one-to-one ranges ("5173-5180:5173-5180"). A machine can publish at most 64 concrete mappings.

Unknown keys are rejected rather than ignored, so a typo fails at create time instead of silently doing nothing.

Common keys: image, cpus, memory, net, ports, volumes, env, init (runs once as root, like a Dockerfile RUN), workdir, user (who the workload runs as), gpu, cuda, docker_socket, storage, overlay, and the [network], [dev], [auth], [health], [restart], [service] tables.

Branch a running machine

A branch is a live fork: an independent copy-on-write child that resumes with the source's running processes, memory, and disk. Start the source as branchable, then branch it:

smolvm machine start --name source --branchable
smolvm machine branch --from source --name child          # checkpoints the source wherever it is

To fan out many children from one checkpoint, the source's workload marks the point to take it by running smolvm-branch-ready once its setup is done, and names the program each child should run after it. The helper blocks in the source, which stays parked there; in each child it hands off to that program with the child's identity in its environment:

# the workload: install, warm up, then "fork me here, and run this in each child"
smolvm machine create --name source --image python:3.12-alpine --net -- sh -c '
  pip install -q requests
  python3 serve.py &                    # keeps running in every child
  exec smolvm-branch-ready -- python3 episode.py'

smolvm machine start --name source --branchable smolvm machine branch --from source --count 8 --name-prefix worker --parallel 8

episode.py starts in each child with SMOLVM_BRANCH_NAME, SMOLVM_BRANCH_INDEX, SMOLVM_BRANCH_BATCH_ID, and SMOLVM_BRANCH_BATCH_SIZE set, plus any --env the branch command passed. A shell script that wants to continue inline instead runs eval "$(smolvm-branch-ready)": the same command, whose output is those variables as export lines. machine exec sessions in a child see them in their environment too.

When a child has its own warm-up after the branch (loading a checkpoint, binding a port), it can report the moment it is actually usable by running smolvm-worker-ready, and the branch command can wait for that instead of for the release alone:

smolvm machine branch --from source --count 8 --name-prefix worker --wait-worker-ready

With --wait-worker-ready (window: --worker-ready-timeout, default 5m) a child that never reports is torn down with its batch rather than handed back looking alive. machine branch-release takes the same flags for a held pool slot.

Container rules apply, as in Docker: the container lives as long as its main process. exec smolvm-branch-ready with no program simply parks; the child keeps running with the helper as its init. A batch branch waits (--ready-timeout, default 10m) for the source to reach its branchpoint; a single --name branch never waits. With --name-prefix or --hold, even a count of one is a batch and gets the same boundary, identity, and release.

Add --branchable to a child when it must branch again. fork, --golden, and --forkable remain compatibility aliases. A branch takes a checkpoint of the source in memory; machine checkpoint saves that same state as a durable .smolcheckpoint artifact that can be restored later or elsewhere.

Building checkpoint tooling in Rust? smolvm-checkpoint provides incremental storage, verified file restoration, and portable export without depending on the VM runtime.

Snapshot a machine into a reusable image

You don't need a Dockerfile to keep an environment. Set a machine up however you like (by hand, or from a Smolfile), then pack the stopped machine into a .smolmachine artifact and push it to any OCI registry:

smolvm machine shell --name myvm          # install and configure interactively
smolvm machine stop  --name myvm
smolvm pack create --from-vm myvm -o myvm
smolvm pack push --file myvm.smolmachine ghcr.io/you/myvm:v1

Anyone can then pull it and boot the exact same machine:

smolvm pack pull ghcr.io/you/myvm:v1

Working Smolfiles: python · node · docker-in-vm · local-llm · headless-browser · doom

Use This For ------------

Sandbox untrusted code. Run untrusted programs in a hardware-isolated VM. Host filesystem, network, and credentials are separated by a hypervisor boundary.

# network is off by default, so untrusted code can't phone home
smolvm machine run --image alpine -- nslookup example.com

fails: no network access

lock down egress: only allow specific hosts

smolvm machine run --net --image alpine --allow-host registry.npmjs.org -- wget -q -O /dev/null https://registry.npmjs.org

works: allowed host

smolvm machine run --net --image alpine --allow-host registry.npmjs.org -- wget -q -O /dev/null https://google.com

fails: not in allow list

Pack into portable executables. Turn any workload into a self-contained binary. All dependencies are pre-baked, so there is no install step and no runtime downloads, and it boots in <200ms.

smolvm pack create --image python:3.12-alpine -o ./python312
./python312 run -- python3 --version

Python 3.12.x, isolated: no pyenv/venv/conda needed

Use local container images for CI, air-gapped hosts, and fast iteration. Feed --image a docker save / podman save archive, pipe one on stdin, or point it at an unpacked rootfs directory. Image work is delegated to your container tooling; smolvm just boots the result.

# build locally, run in the VM with no push/pull
docker build -t myapp .
docker save myapp | smolvm machine run --image - -- ./app

from an archive file (boots with no network)

smolvm machine run --image ./myapp.tar -- ./app

from an already-unpacked rootfs directory

smolvm machine run --image ./rootfs/ -- ./app

Persistent machines for development. Create, stop, start. Installed packages survive restarts.

smolvm machine create --net --name myvm
smolvm machine start --name myvm
smolvm machine exec --name myvm -- apk add sl
smolvm machine exec --name myvm -it -- /bin/sh

inside: sl, ls, uname -a. Type 'exit' to leave

smolvm machine stop --name myvm

Host directory mounts propagate host-side changes into guest inotify, so tools such as Vite, nodemon, and file-watch test runners reload without polling. Set SMOL_NO_HOT_RELOAD=1 in the host process to disable recursive watching for a machine with an unusually large directory tree.

For sequential or mmap-heavy reads, SMOLVM_MOUNT_DAX=1 enables a 2 GiB virtiofs DAX window for each user mount when the machine starts. This is a host process setting (set it on smolvm serve for served machines), and an existing machine needs a stop/start to apply it. DAX does not materially accelerate metadata-heavy traversal. Confirm it in the guest with grep virtiofs /proc/mounts; an active mount includes dax=always.

Use git and SSH without copying private keys into the guest. Forward your host SSH agent into the VM. The guest can ask the agent to sign with any forwarded key while the socket is available, so forward it only to workloads you trust. Requires an SSH agent running on your host (ssh-add -l to check).

smolvm machine run --ssh-agent --net --image alpine -- sh -c "apk add -q openssh-client && ssh-add -l"

lists your host keys; private key material remains in the host agent

smolvm machine exec --name myvm -- git clone [email protected]:org/private-repo.git

Declare environments in a file. See Smolfile above for reproducible machine config, and for snapshotting a configured machine into a reusable .smolmachine image without writing a Dockerfile.

How It Works ------------

Each workload runs in a hardware-virtualized VM with its own guest kernel on Hypervisor.framework (macOS), KVM (Linux), or the Windows Hypervisor Platform (Windows). libkrun is the VMM and libkrunfw supplies the guest kernel. Pack it into a .smolmachine and it runs anywhere the host architecture matches, with zero dependencies.

Images use the OCI format, the same open standard Docker uses. Any image on Docker Hub, ghcr.io, or other OCI registries can be pulled and booted as a microVM. No Docker daemon required.

Defaults: 4 vCPUs, 8 GiB RAM. Memory is elastic via virtio balloon, so the host only commits what the guest actually uses and reclaims the rest automatically. vCPU threads sleep in the hypervisor when idle, so over-provisioning has near-zero cost. Override with --cpus and --mem.

Security Model --------------

smolvm strengthens the guest/host boundary by giving each workload a separate VM and guest kernel. It is not, by itself, a hardened multi-user control plane:

Treat root in the guest as untrusted. The VM boundary limits its direct access to the host, while every explicitly forwarded capability, including mounts, network access, ports, and SSH agent access, becomes part of the workload's authority.

Comparison ----------

| | smolvm | Containers | Colima | QEMU | Firecracker | Kata | |---------------------|--------|------------|--------|------|-------------|------| | Workload boundary | VM + guest kernel | Namespace + shared kernel | Namespace inside shared VM | VM + guest kernel | VM + guest kernel | VM per container | | Boot time | <200ms | ~100ms | ~seconds | ~15-30s | <125ms | ~500ms | | Architecture | Library (libkrun) | Daemon | Daemon (in VM) | Process | Process | Runtime stack | | Per-workload VMs | Yes | No | No (shared) | Yes | Yes | Yes | | macOS native | Yes | Via Docker VM | Yes (krunkit) | Yes | No | No | | Embeddable SDK | Yes | No | No | No | No | No | | Portable artifacts | .smolmachine | Images (need daemon) | No | No | No | No |

Platform Support ----------------

| Host | Guest | Requirements | |------|-------|-------------| | macOS Apple Silicon | arm64 Linux | macOS 11+ | | macOS Intel | x86_64 Linux | macOS 11+ (untested) | | Linux x86_64 | x86_64 Linux | KVM (/dev/kvm) | | Linux aarch64 | aarch64 Linux | KVM (/dev/kvm) | | Windows x86_64 | x86_64 Linux | Windows Hypervisor Platform (WHP) enabled |

Known Limitations -----------------

Kubernetes ----------

smolvm ships a containerd shim v2, so Kubernetes runs a pod as its own microVM through a RuntimeClass, the same integration point Kata uses. The Linux release carries the shim and the manifests; there is nothing to build.

On each node that should run microVM pods (requires KVM):

# 1. install the shim + runtime artifacts, then apply the containerd config it prints
sudo ./kubernetes/install-k8s-runtime.sh
sudo systemctl restart containerd

2. label the node so the RuntimeClass will schedule to it

kubectl label node smolvm-runtime=true

Then register the class and run a pod:

kubectl apply -f kubernetes/runtimeclass.yaml
kubectl apply -f kubernetes/example-pod.yaml
kubectl logs smolvm-hello    # prints the guest's own kernel, so it is a real VM

Any pod opts in with runtimeClassName: smolvm.

GPU Acceleration ----------------

smolvm exposes the host GPU to guests via virtio-gpu / Venus (Vulkan-over-virtio). Guest workloads see a real Vulkan device; on Linux + Intel this renders as:

ANGLE (Intel, Vulkan 1.4 (Virtio-GPU Venus (Intel(R) UHD Graphics ...)), venus)

Host requirements

macOS: virglrenderer and MoltenVK are bundled in the smolvm distribution. No extra installs needed.

Linux: virglrenderer and a host Vulkan driver must be installed from the system package manager:

| Distro | Packages | |--------|----------| | Alpine | apk add virglrenderer mesa-vulkan-intel (or mesa-vulkan-ati for AMD) | | Debian/Ubuntu | apt install virglrenderer0 mesa-vulkan-drivers | | Nix / NixOS | the flake does not put virglrenderer on the loader path; export LD_LIBRARY_PATH with the nixpkgs virglrenderer and libepoxy lib dirs (and /run/opengl-driver/lib on NixOS), see the GPU page |

virglrenderer depends on libEGL and libdrm from the host GPU driver stack. These are hardware-specific and cannot be bundled. Any GPU-capable Linux host will already have them installed via its GPU driver.

Usage

# CLI
smolvm machine run --net --gpu --image alpine -- sh -c '
  apk add --no-cache mesa-vulkan-virtio vulkan-loader vulkan-tools
  vulkaninfo --summary | grep deviceName
'

→ deviceName = Virtio-GPU Venus (Apple M1 Pro)

Smolfile

gpu = true

gpu_vram = 2048 # MiB, default 4096

Nothing needs to set VK_ICD_FILENAMES: the guest's Mesa installs an ICD manifest the Vulkan loader finds on its own, and on a glibc image smolvm also bind-mounts its own Venus driver and points the loader at it. Set the variable only to override that choice — and note the manifest name carries the architecture (virtio_icd.x86_64.json / virtio_icd.aarch64.json), so a hardcoded path is wrong on the other arch.

Headless browser example

See examples/headless-browser/ for a working Chromium setup using ANGLE + Venus for hardware-accelerated WebGL inside a headless VM.

CUDA API Remoting -----------------

--gpu and --cuda provide different interfaces. --gpu exposes Vulkan through virtio-gpu / Venus; it does not provide CUDA. --cuda enables CUDA API remoting: driverless guest shims forward CUDA calls over vsock to a host process, which executes them through the host's NVIDIA driver.

CUDA remoting requires an NVIDIA GPU and a working NVIDIA driver on the host. It is not GPU passthrough: the guest receives neither the physical device nor an NVIDIA driver.

Fork-heavy Linux hosts should use a kernel containing upstream KVM fix 916b7f4. Affected kernels can intermittently report ENOMEM on the first KVM_RUN even with ample host memory; smolvm reduces exposure and replaces a failed worker, but the kernel update is the definitive fix.

The VM boundary still isolates the workload's CPU, memory, and filesystem. GPU access is mediated by host processes and the shared host GPU, so GPU isolation remains process-level rather than a hardware or VM boundary. Do not treat CUDA remoting as a hardened multi-tenant GPU isolation boundary.

See GPU access by API remoting: how a driverless microVM runs CUDA for the design, trade-offs, and comparison with passthrough.

Development -----------

See docs/DEVELOPMENT.md.

Documentation -------------

The user documentation at smolmachines.com/docs is written in smol-machines/docs, and corrections and new pages are welcome there. It is Markdown only, with no build to run; its CONTRIBUTING.md covers the page format and how a change reaches the site.

Bugs and feature requests for the runtime stay here.

Apache-2.0 · made by @binsquare · twitter · github

GitHub Stars & Activity

6,167Stars
297Forks
0Open issues
RustLanguage

GitHub Popularity

GitHub stars6,167
Forks297
Open issues0
Primary languageRust
License-
Stars gained today40
Created-
Last pushed-

Trending History

Daily boardrank #65 · ▲ 40 stars

Related GitHub Projects

1

rust-unofficial / awesome-rust

Rust★ 59,449⑂ 3,626▲ 23 stars
2

typst / typst

Rust★ 56,140⑂ 1,719▲ 23 stars
3

xai-org / x-algorithm

Rust★ 33,290⑂ 5,405▲ 30 stars
4

atuinsh / atuin

Rust★ 31,755⑂ 971▲ 47 stars
5

CapSoftware / Cap

Rust★ 22,547⑂ 1,940▲ 103 stars
6

rui314 / mold

Rust★ 17,189⑂ 558▲ 44 stars
7

cloudflare / quiche

Rust★ 12,130⑂ 1,123▲ 264 stars
8

EpicGames / lore

Rust★ 8,698⑂ 434▲ 23 stars

More Trending Repositories