Getting Started

Install Volt and run your first workload in under 2 minutes.

Prerequisites

Installation

# Install Volt
curl -sSL https://get.armoredgate.com/volt | sh

Verify the installation:

volt version

Your First Container

# Run a simple container
volt run --name hello alpine echo "Hello from Volt"

# Run nginx with port mapping
volt run --name web -p 8080:80 nginx

# Check running workloads
volt ps

Your First VM

When you need hardware-level isolation, Volt can run workloads as microVMs using Neutron Stardust:

# Create a microVM
volt vm create --name secure-vm --base alpine --memory 128M

# Start it
volt vm start secure-vm

# Check VM status
volt vm list

Tip: Use containers for most workloads. Use VMs when you need kernel-level isolation — multi-tenant environments, untrusted code execution, or regulatory compliance.

Next Steps