Skip to content

Forget everything you know about containers.

Docker containers are build artifacts. Lightweight, disposable, stateless. You bake an image, ship it, run it, throw it away. They are packaging — not computing.

Hoody containers are computers. Full Debian 13 Linux machines with systemd, their own filesystem, their own network stack, their own process tree. They boot. They run services. They persist state. They have terminals and desktops and databases and browsers. They are not ephemeral throw-away images. They are machines you live in.

The difference is not incremental. It is categorical. And they run on servers you actually own — bare metal hardware you rent from the marketplace, not a cloud provider’s shared infrastructure. Years of privacy and security engineering at Hoody went into making sure your containers are yours.


When you create a Hoody container, you get a complete Linux computer:

  • Debian 13 (Trixie) with full package manager (apt)
  • systemd init system (real service management, not hacked entrypoints)
  • Own filesystem (persistent, writable, full Linux FHS)
  • Own network stack (own IP, own DNS, own routing table)
  • Own process tree (PID namespace, proper process isolation)
  • 18 built-in HTTP services (terminal, display, files, exec, sqlite, browser, workspaces, code, curl, notifications, daemons, cron, pipe, notes, watch, run, tunnel, proxy logs)

Every one of those services is a URL. The moment the container spawns, you have 18 live endpoints. No setup, no configuration, no deployment pipeline.

Terminal window
# Create a container -- a full Linux computer
hoody containers create --project abc123def456789012345678 \
--server-id node-us-server-id \
--name "dev-environment" \
--hoody-kit \
--dev-kit
# 30 seconds later: 18 HTTP services, all live

Containers vs Docker: Not Even the Same Category

Section titled “Containers vs Docker: Not Even the Same Category”

Docker solved packaging. Hoody solves computing. They are not competitors. They are different tools for different problems.

Docker ContainerHoody Container
What it isA process running from a filesystem imageA full Linux computer
Init systemNone (or hacked PID 1)systemd
PersistenceEphemeral by default (volumes are add-ons)Persistent by default
NetworkShared bridge / host networkOwn network stack with own IP
ServicesOne process per container (convention)18 built-in HTTP services + anything you install
Accessdocker exec from the hostURL from anywhere on Earth
StateDestroy and rebuildSnapshot, restore, branch
OSStripped-down layersFull Debian 13 with apt
PurposeShip softwareRun computers

Docker asks: “How do I package and deploy this app?” Hoody asks: “How do I give someone a computer that is instantly accessible from anywhere?”


Containers vs VMs: Same Goal, Different Era

Section titled “Containers vs VMs: Same Goal, Different Era”

Virtual machines also give you full computers. But VMs were designed for the pre-web era. They assume you will SSH into them, configure them manually, and manage them like pets.

Hoody containers are designed for the HTTP era:

Traditional VMHoody Container
AccessSSH, VNC, RDP (specialized clients)HTTPS (browser or curl)
Boot timeMinutesSeconds
OverheadFull OS + hypervisorLightweight (LXC + namespaces)
Density5-20 per serverHundreds per server
IsolationHardware-level (hypervisor)Kernel-level (namespaces + seccomp)
Built-in servicesNone — install everything18 HTTP services out of the box
EmbeddableNoYes — every service is an iframe-able URL
AI-accessibleRequires SSH adapterNative — AI speaks HTTP
SnapshotsSlow (full disk image)Instant (copy-on-write)

You get VM-grade isolation without VM-grade overhead. You get full computers without the boot time. You get dedicated machines without the density penalty.


Every Hoody container comes with the Hoody Kit — 18 services that abstract Linux capabilities into HTTP endpoints. These are not optional add-ons. They are the container’s native interface.

ServiceURL SegmentWhat It Does
Terminalterminal-NShell sessions via HTTP + WebSocket
Displaydisplay-NFull desktop environments (Xfce, etc.) via browser
Filesfiles-NFilesystem access (read, write, delete, list)
SQLitesqlite-NSQL databases queryable via HTTP
Execexec-NScripts that become HTTP endpoints automatically
Browserbrowser-NChrome/Chromium automation via REST
Workspacesworkspaces-NAI agent orchestration with 100+ tools
Codecode-NVS Code instances in the browser
cURLcurl-NTransform any REST call into a GET URL
Notificationsn-NPush notifications via HTTP
Daemonsdaemon-NBackground process management
Croncron-NScheduled task management
Pipepipe-NStreaming data transfer between devices
Notesnotes-NCollaborative notebooks with real-time sync
Watchwatch-NFile change notifications via HTTP + WebSocket
Runrun-NMulti-source app resolver (Nix, pkgx, AppImage, Docker/OCI)
Tunneltunnel-NTCP tunneling over HTTP (expose or pull services)
Proxy Logslogs-NAccess logs and traffic inspection for Hoody Proxy

Every service is a URL. Every URL is accessible from anywhere. The container is not just a Linux machine — it is a Linux machine that speaks HTTP natively.

Terminal window
# Run a command in the container
hoody terminal sessions exec \
--command "apt update && apt install -y nodejs" \
-c 890abcdef12345678901cdef
# Read a file
hoody files get /home/user/app.js -c 890abcdef12345678901cdef
# Query a database
hoody db exec-transaction \
--transaction '{"transaction":[{"query":"SELECT * FROM users"}]}' \
-c 890abcdef12345678901cdef

Each container is a security boundary. Not a process boundary. Not a namespace suggestion. A boundary.

Own filesystem. Containers cannot see each other’s files. No shared volumes by default. Each container has its own root filesystem, its own /home, its own /etc. You can explicitly share directories between containers if you choose, but isolation is the default.

Own network. Each container has its own IP address, its own routing table, its own DNS configuration. Containers do not share a network bridge. They communicate via HTTP URLs through the proxy, the same way any two computers on the internet communicate.

Own processes. PID namespaces ensure containers cannot see or signal each other’s processes. A compromised container cannot kill -9 its neighbors.

Kernel-enforced. This isolation is not application-level. It is enforced by Linux namespaces, seccomp filters, and a hardened kernel. Breaking out of a container requires a kernel exploit, not an application bug.


A container is not limited to one terminal, one desktop, one database. The instance number in the URL (-1, -2, -3) lets you run multiple parallel instances of any service:

https://...890abc-terminal-1.node-us.containers.hoody.icu # Developer's shell
https://...890abc-terminal-2.node-us.containers.hoody.icu # Build process
https://...890abc-terminal-3.node-us.containers.hoody.icu # AI agent's session
https://...890abc-display-1.node-us.containers.hoody.icu # Main desktop
https://...890abc-display-2.node-us.containers.hoody.icu # Secondary monitor
https://...890abc-sqlite-1.node-us.containers.hoody.icu # Application database
https://...890abc-sqlite-2.node-us.containers.hoody.icu # Analytics database

Same container. Different sessions. Different users. Different AI agents. All running concurrently, all isolated by instance, all accessible at their own URL.

This is multiplayer by architecture, not by feature flag.


Traditional VMs consume fixed resources whether you use them or not. A 2-core, 4GB VM costs the same idle as it does under load.

Hoody containers use KSM (Kernel Samepage Merging) and BTRFS deduplication to share identical memory pages and storage blocks across containers. One hundred containers running the same base Debian image do not consume 100x the memory. They share what is identical and pay only for what differs.

This means:

  • Development containers cost nearly nothing when idle
  • Test containers share base OS memory with production containers
  • Staging environments are not a budget conversation
  • Per-feature containers become practical, not extravagant
  • AI agents can each get their own container without resource anxiety

You are not rationing computers. You are spawning them.

Terminal window
# Spawn 10 containers for parallel testing
for i in $(seq 1 10); do
hoody containers create --project $PROJECT_ID \
--server-id $SERVER_ID \
--name "test-runner-$i" \
--hoody-kit
done
# Each gets 18 HTTP services, each isolated
# Shared memory pages keep resource usage low

Containers are not disposable. They have state, history, and continuity.

Create — a POST to the API. The container boots in seconds with all services running.

Run — the container operates as a full Linux machine. Install software, run servers, write code, train models. Everything persists.

Snapshot — capture the entire filesystem state instantly. Snapshots are copy-on-write, so they cost almost nothing.

Stop — the container halts but preserves its filesystem. Start it again, and everything is where you left it.

Restore — revert to any snapshot. Time travel in seconds.

Copy — duplicate a container to another server or project. Clone your development environment for a new team member in one API call.

Delete — destroy the container. The URL ceases to exist.

At every stage, the container’s identity is its URL. Create it, and URLs appear. Delete it, and URLs vanish.


In legacy infrastructure, the “unit” is ambiguous. Is it a server? A VM? A pod? A process? A function? Teams spend more time debating the abstraction than building on it.

In Hoody, the atomic unit is the container. It is the answer to every question:

  • “Where does this service run?” In a container.
  • “How do I give the AI access?” Give it the container URL.
  • “How do I isolate this experiment?” Put it in a container.
  • “How do I roll back?” Restore the container snapshot.
  • “How do I share this environment?” Share the container URL.

One abstraction. One mental model. One URL pattern. Everything else is built on top of containers, not beside them.


Next: The Hoody Proxy — how URLs reach containers.