Begun October 2025, this is my daily driver container sandbox. It began as a Dockerfile and a collection of shell scripts and aliases, and is evolving into an opinionated yet flexible management layer for long-lived, distributed containerized workspaces.
It seems like everybody else who runs Claude in a box mounts volumes with project files that live on their host machine. This never made sense to me. Yes, it prevents Claude from directly rming your entire host filesystem, and it's convenient. But Claude can still write arbitrary code and run arbitrary commands on user directories. I wanted even more isolation. So I didn't just move Claude Code into a box, I moved my entire development workspace in too (tmux, neovim, etc) with a set of scripts to setup fresh containers the way I like them, and git for bringing in and committing out work.
If the above seems like overkill, Airlock probably isn't for you!
Airlock is built of composable primitives (Docker Compose, Debian container, Colima runtime on macOS). You can use Airlock as a one-time setup wizard or as a helper application for daily management. (In the future, optional host GUI applications will offer even more QOL features: easy drag-and-drop file transfer, glanceable diagnostics, quick controls, etc.)
Airlock aims to be useful as a minimal home for one-off Claude projects, or as a full-fledged persistent remote workspace with months of uptime, and anywhere in between.
Over time I have found and eliminated many of the rough edges to working entirely within a totally isolated, long-lived container environment. This project attempts to make minimal interventions to handle those annoyances for you with sensible defaults, in ways that are exposed and tunable. Some of these core areas are:
- User setup: Permissions and groups inherited by coding agent processes
- Package managers: Airlock optionally installs Homebrew for the macOS crowd and irons out some Linuxbrew wrinkles
- Port forwarding: Customizable port forward ranges, eg., for running webapps
- Memory management: Linked presets for balanced allocation at the runtime and container level
- Virtual disk trimming: Routinely reclaiming space on the sparse disk after file cleanup
In progress
- Switch from Docker (daemon) to Podman (rootless) - more secure
- More robust memory management
- Shell configs for prompt indicator, simple aliases/functions, provisioning tasks
Soon
- Core API and CLI in Go
- MVP File transfer utility
- Linux testing
Later
- Interactive firewall - approve/deny connection requests from the host, á la Little Snitch
- Test distributed, mirrored instances via in-container Syncthing
Eventually
- Tested/documented Windows support via WSL runtime
Warning
Alpha, under active development. I daily drive this setup, but it needs work related to VM disk management for long-running containers. Host and container clients are under development. Proceed at your own risk.
Requirements
- Docker CLI (or Podman)
- Runtime - I recommend Colima, or you can use the runtime that comes with Docker Desktop
- Docker Desktop: Open the application and leave it running
- Colima: Run
colima start- Append
-m {number}to set the VM memory limit in gigabytes (default is 2) - Append
-c {number}to set the number of CPUs (default is 2)
- Append
On my Macbook Air M2 with 24g RAM and 8 cores, I run:
colima start -m 18 -c 6
The compose.yaml file allocates 16g RAM, with a soft limit of 12g and 4g of swap in the VM. You'll want to adjust these numbers in tandem with the VM if setting up a container with more or less memory. I've found this setup is more than powerful enough for ~6 concurrent instances of Claude Code / OpenCode, as well as a bevy of other terminal applications and sometimes a VSCode server.
Run this command in the same directory as the Dockerfile.
I prefer this method, as it uses easily stored and versioned compose.yaml files
instead of long, fragile docker commands.
docker-compose builddocker build -t airlock .Warning
If anything fails in the image build, the image won't be correctly tagged with
the 'airlock' name, and the run command below won't be able to find the
image based on that name.
Replace airlock with your desired image name, if different.
Start the container in detached mode with a specified profile.
docker-compose --profile {profile} up -d
I have two profiles, work and me. For this example, let's start the me profile:
docker-compose --profile me up -d
This command drops you into the container TTY.
docker run -it -m 8g -p 3000:3000 --name {container-name} airlock| Flag / Argument | Description |
|---|---|
-it |
Interactive mode with TTY |
-m 8 |
Amount of RAM to allocate to container. In most cases, this should be the same amount given to the VM in the first step. |
-p 3000:3000 |
Expose any ports you want to use for development. |
{container-name} |
Your desired container name. In compose.yaml, |
Important
Replace <container-name> with the name of the project for which you intend
to use this container.
With your chosen service already running detached, run:
docker-compose exec {profile} {shell}
In my case, I want to create a terminal in the me service running fish shell:
docker-compose exec me fish
Which has a kind of piratical ring to it.
The only advantage I can think of to not using Compose is that
you have to start and then enter your container in separate commands.
The single docker run ... command run in step 3b does both.
Open an external terminal window or split, then run:
docker exec -it <container-name> /bin/bashYou can safely exit each terminal independently of one another.
Use exit or ctrl + d to exit the shell.
Use docker stop
Run colima stop (or close Docker Desktop) to stop the runtime.
Once your container has been built, you can start and re-enter it at any time. (At least, any time your VM is running ;))
docker start -ai <container-name>
My workflow for this setup is to mostly treat the container as an emphemeral convenience. As I discover new use cases and needs, I modify the container,
However, the beauty of working out of a Docker container is that it's portable! You could deploy this anywhere you want, SSH into it, and pick up exactly where you left off.
Create an SSH key:
ssh-keygen -t ed25519 -C "text comment"
Save it with a passkey of your choice, then run this and copy the entire results. This is your public key.
cat /root/.ssh/id_ed25519.pub
Install using the official curl oneliner from Anthropic.
Then run claude to setup and authenticate Claude as normal.
Once Claude has been authenticated, you can copy its config out of the container with the following command. This way, you can copy in your auth after future image rebuilds.
# Copy entire .claude folder
docker cp {CONTAINER-NAME}:/root/.claude ./claude-config/
# Copy auth only
docker cp {CONTAINER-NAME}:/root/.claude/.credentials.json ./claude-config/You can add lots of functionality to the container without a rebuild. After all, we do have 2 full package managers and all of Debian at our disposal!
However, it's probably inevitable that you'll need to start fresh at some point. Here are some examples of changes that would require an image rebuild:
- Switching the base image (ie., upgrading to a newer version of Debian)
- Changing the working directory
Runtime parameters don't require a rebuilt image, but they do require a new container.
- Adding more RAM
- Exposing different ports
- Changing port mappings
- Renaming the container
- Adding volume mounts
- Changing CPU limits
