← GHOST_MACHINES · GLOSSARY

Glossary — Every Term, Plainly

Comprehensive, beginner-friendly definitions. Source of truth lives in docs/glossary.md on GitHub — this page mirrors it for the web (30 terms, no todo/conductor internal jargon).

TermWhat It MeansWhy It Matters Here
Ghost MachinesToolkit for disposable Linux sandboxes.The “hotel”.
Ghost / SandboxRunning container you code inside, thrown away when done.Your private room.
ContainerSealed Linux room sharing host kernel, own filesystem.1–2s boot, ~73 MB idle. Not a VM.
VMFull computer inside (own kernel, hypervisor).For hostile/Windows.
Docker / ComposeEngine + blueprint (docker-compose.yml).How Ghost is defined.
ImageRead-only template built from Dockerfile.ubuntu-template or GHCR prebuilt.
DockerfileRecipe that builds an image.4 variants: ubuntu/.debian/.alpine/.arch.
GHCRGitHub Container Registry (ghcr.io).Pull instead of building.
Multi-archOne tag → amd64 + arm64; auto-picked.Works on Intel + Apple Silicon.
EngineLinux base choice (Ubuntu/Debian/Alpine/Arch).Pick by PPA vs slim vs musl vs rolling.
ModeResource profile (dual/single/power/half).1c/8G → 50% host.
IaCMachines defined in code.No “works on my machine”.
Mount / VolumeHost folder mounts/ mapped in.Work survives deletion.
UID/GID SyncAlign developer to host id -u/g.Fixes permissions.
LXCFSMakes htop/free show cgroup, not host.Linux only.
Non-root Userdeveloper, not root; sudo via ghost.Security.
SSHssh -p 2223 developer@localhost.How you connect.
WaaS / CDEVending workspaces on one host/cloud.tenant.sh + Tunnel.
TenantIsolated user room with port + mount + quotas.WaaS primitive.
HostMachine running Docker.The building.
Bridge Networkghost_sandbox LAN.Tenants isolated.
Cloudflare TunnelZero-trust remote without ports.TUNNEL_TOKEN.
MCPModel Context Protocol for AI tools.Agents → files/terminal.
HeLa MCP Ecosystem7 MCP servers (mitosis/genome/…).Agent tooling.
RTKToken saver via PreToolUse hook.60–90% save.
HeLaNamed for Henrietta Lacks.Product naming.
OrbStack / Docker DesktopmacOS Docker daemons.How macOS runs Ghost.
WSL2Windows Linux kernel for Docker.How Windows runs Ghost.
Snapshot / RestoreArchive of mounts/ + SHA + atomic undo.Save/undo.
Cleanup LevelsL1 -s, L2 -v, L3 -a, L4 --nuke (+ GHCR + cache).Free disk.
Builder CacheStored Docker layers.Cleared by --nuke.

Full 30-term table with beginner-friendly “Why It Matters” lives in docs/glossary.md — this web page is a 1:1 mirror without internal todo/conductor terms.

← Back to Archival Procedures · GHOST_MACHINES · MIT