Containerization
Atomic runs with all permissions by default, but in some cases, you will want to have more control over what directories Atomic can write to and which accesses it has. There are two general options. You can either- run the whole
atomicprocess inside an isolated environment, or - run
atomicon the host and route tool execution into an isolated environment.
Choose a pattern
| Pattern | What is isolated | Best for | Notes |
|---|---|---|---|
| Gondolin extension | Built-in tools and ! commands | Local micro-VM isolation while keeping auth on host | See examples/extensions/gondolin/. |
| Plain Docker | Whole atomic process in a local container | Simple local isolation | Provider API keys enter the container. |
| OpenShell | Whole atomic process in a policy-controlled sandbox | Local or remote managed sandbox | Requires an OpenShell gateway. |
atomic process runs. If you run host atomic with a tool-routing extension, other custom extension tools still run on the host unless they also delegate their operations.
Gondolin
Gondolin is a local Linux micro-VM. Use the example extension when you wantatomic on the host but all built-in tools routed into the VM.
Setup:
/workspace in the VM and overrides read, write, edit, bash, find, and search so the default coding tools operate inside the VM.
User ! commands are routed into the VM, as well.
File changes under /workspace write through to the host.
Requirements: Bun for dependency installation, Node.js >= 23.6.0 for @earendil-works/gondolin, plus QEMU (requires installation through your package manager).
Plain Docker
Run the wholeatomic process in Docker when you want the simplest local container boundary.
Dockerfile.atomic:
-v "$PWD:/workspace" mounts your current directory into the container at /workspace such that reads and writes in /workspace inside Docker directly affect your host files, like in the Gondolin example.
Use a named volume for /root/.atomic/agent if you want container-local settings and sessions. Mounting your host ~/.atomic/agent exposes host auth and session files to the container.
OpenShell
Use NVIDIA OpenShell when you want a policy-controlled sandbox with filesystem, process, network, credential, and inference controls. OpenShell can run sandboxes through a local gateway backed by Docker, Podman, or a VM runtime, or through a remote Kubernetes gateway. Every sandbox requires an active gateway. Register and select one before creating a sandbox:atomic inside an OpenShell sandbox:
atomic process runs inside the sandbox.
Built-in tools, ! commands, and extension tools execute inside the OpenShell boundary.
If the gateway is remote, project files are not bind-mounted from the host, meaning writes in the sandbox are not reflected on your machine.
Clone the repository inside the sandbox or use OpenShell file transfer commands:
https://inference.local, and the gateway injects the configured provider credentials upstream.
Configure Atomic to use the corresponding OpenAI-compatible or Anthropic-compatible endpoint if you want model traffic to use this route.