Open source · Docker Desktop alternative for Apple Silicon

Velox

A fast, lean way to run a real Docker Engine on macOS with the stock Docker CLI, a native Swift host, and a self-contained app that gets out of your way.

Velox dashboard showing engine status, resource cards, disk breakdown, and live CPU and memory usage
226 MB self-contained app
1.74 s warm restart to API-ready
~70 MB empty idle host footprint
88 Gbit/s container network throughput

Native where it matters

The Docker tools you already use, in a lean Mac app

Stock Docker CLI

Velox registers a Docker context named velox, so Compose, Buildx, Testcontainers, SDKs, and existing scripts can talk to the real Docker API.

Native Mac app

Inspect compose groups, containers, images, volumes, networks, logs, resources, and disk usage from a SwiftUI app and menu-bar quick panel.

Names that resolve

Reach containers from macOS at <name>.velox.local with their real IPs, any protocol, and no published port required.

Small by design

One Swift host process manages the VM, Docker API proxy, port forwarding, DNS, resource saver, and app UI without Electron or always-on background daemons.

Use Docker as Docker

No wrapper command. No workflow migration.

Keep the Docker tooling you already use and point it at the Velox context. The app can stay open for a full desktop experience, or the CLI can run the engine headless.

# install, then point the stock CLI at Velox
curl -fsSL https://raw.githubusercontent.com/mikaelhug/Velox/main/install.sh | bash

docker context use velox
docker run --rm hello-world

# reach a container by name — no -p needed
docker run -d --name web nginx
curl http://web.velox.local
Velox containers view showing compose groups, container names, local domains, CPU, and memory

Measured against Docker Desktop

Reproducible numbers, including where Velox trails

Install footprint 10x smaller
Idle RAM, loaded benchmark baseline 3.7x less
Container launch 1.5x faster
Published port throughput 3.3x faster
Cold image pull ~10% slower

Full methodology, fairness controls, caveats, and the runnable benchmark harness live on the benchmark page.

How it is built

A thin host, a minimal guest, and the real Docker Engine

The host is Swift on Apple's Virtualization.framework. Networking uses Apple's in-kernel VZNAT datapath.

The guest uses a kernel.org kernel, a static Rust init process, a read-only erofs root filesystem, and stock dockerd.

The data disk is durable by default, with guest barriers and a raw sparse image that can return freed space to macOS.

Try Velox

Install the current release

Velox requires macOS 15 or newer on Apple Silicon. The app is signed but not yet notarized, so manual installs need the quarantine step shown in the README.