๐Ÿขbootmeh.devยทdocs
Dashboard โ†’

Getting Started

Create your first VM

The fastest way to create a VM is from the dashboard. Click + New, give it a name, and it will be ready in seconds.

You can also create VMs via SSH:

ssh bootmeh.dev new --name=myproject

SSH config

Add this snippet to your ~/.ssh/config to connect to your VMs by name:

Host *.bootmeh.dev
  User user
  ProxyCommand ssh [email protected] "%h"
  StrictHostKeyChecking accept-new
  UserKnownHostsFile ~/.ssh/known_hosts.bootmeh

Then connect with:

ssh alice-myproject.bootmeh.dev

Your first session

Once connected, you have a full Ubuntu VM with:

  • sudo access
  • apt package manager
  • systemd for services
  • Persistent disk at /persist (when attached on the host)
  • Docker installed when the Agentic pack includes the hub stack

Destroying a VM

From the dashboard, click Delete on any VM. Or from inside the VM:

sudo touch /killme

The VM will be destroyed within a minute.