Claude code docker sandbox
Skill okayus/okayus-skills/skills/claude-code-docker-sandbox
Agent Skills for Claude Code / agentskills.io-compatible agents. Cloudflare Workers + Discord integration patterns.
npx -y skills add okayus/okayus-skills --skill claude-code-docker-sandboxAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Set up a Docker Compose-isolated development environment where dependency installs and agent-run code execute behind a default-deny network firewall, never touching the host. Use when you want to run `npm install` / `cargo build` / `cabal build`, untrusted dependencies, or Claude Code itself in a container to contain supply-chain attacks (npm postinstall, Rust build.rs, Haskell Setup.hs) — without depending on VS Code. Reuses Anthropic's published devcontainer Dockerfile + init-firewall.sh, driven by a plain docker-compose.yml so any host editor works via bind mount; Rust/Haskell toolchains are opt-in build args on the node:20 base. Covers the egress allowlist (fatal vs OPTIONAL non-fatal domains), build-time-vs-runtime network, keeping Claude Code current inside the firewall (native updater's host is blocked — update via npm at start), why the /model picker hides flag-gated models until DISABLE_TELEMETRY is unset, bypassPermissions-by-default (container-scope, not repo-shared), and host-side git hygiene.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
20.0 KB, ~4.7k tokens by cl100k_base, as published. Nobody here has run it
Claude Code Docker Sandbox
Get a Node/JS project to the state where npm install, build tools, and Claude Code all run inside a container behind a default-deny iptables firewall, while you edit files from your normal host editor and run git on the host.
Why do this: supply-chain attacks execute arbitrary code at dependency-install/build time and at run time — npm postinstall scripts, Rust build.rs, Haskell custom Setup.hs are all the same class of hole. A naked npm install / cargo build / cabal build on the host can read ~/.ssh, ~/.aws/credentials, exfiltrate over the network, or backdoor your shell rc files. This skill confines all of that to a container whose only network egress is an explicit allowlist (the package registry, GitHub, your model API, your deploy target) — everything else is rejected at the OS level.
Languages: the base image is node:20 because Claude Code itself is an npm package and needs a Node runtime even in a Rust- or Haskell-only project. Rust (rustup) and Haskell (GHCup) are opt-in --build-arg layers on top — see Language toolchains.
This is the non-VS-Code path. Anthropic's official .devcontainer/ reference assumes a VS Code / Dev Containers spec editor. Here the same hardened Dockerfile + init-firewall.sh are driven by a plain docker-compose.yml, so the workflow is docker compose exec dev zsh + any host editor.
When to use this skill
- Starting a new Node/JS/TS project and you do not want
npm installto run on the host - You use nvim / helix / emacs / any non-VS-Code editor and the official dev container flow doesn't fit
- You want to run Claude Code (or another coding agent) with reduced permission friction, knowing an OS-level boundary contains it
- You're spooked by a recent npm compromise and want a repeatable isolation baseline across projects
Do not use this when: you need the full VS Code Dev Containers UX (use the official .devcontainer/ instead), you're on native Windows without WSL2 (the firewall needs Linux netfilter — run inside WSL2 or a Linux VM), or you require kernel-level separation against truly untrusted code (use a VM/microVM instead — a container shares the host kernel).
Threat model & limits (read before relying on it)
- What it stops:
postinstallscripts and run-time code from writing outside the project dir, reading host home/credentials, or reaching non-allowlisted network hosts. Blast radius of a malicious package is the bind-mounted project dir + the allowlisted domains. - What it does NOT stop: data exfiltration through an allowlisted domain (e.g. pushing secrets to a GitHub repo you allowed — the firewall filters by hostname, not by intent), kernel exploits (shared kernel), or anything you mount writable. Keep the allowlist narrow and never mount host secrets (
~/.ssh, cloud cred files) into the container. - git push stays on the host. Don't put git credentials in the container. The agent inside can read
git status/git log(the.gitdir is bind-mounted) but you runcommit/pushfrom the host. This keeps your GitHub token out of the isolation boundary.
Deliverables (completion criteria)
You're done when:
docker compose up -dstarts the container and the logs end withFirewall verification passed - unable to reach https://example.com as expectedfollowed by... able to reach https://api.github.com as expected.docker compose exec dev sh -c 'curl --connect-timeout 5 -s -o /dev/null -w "%{http_code}" https://example.com'prints000(blocked), and the same againsthttps://registry.npmjs.orgprints200.docker compose exec dev zshdrops you into/workspaceas the non-rootnodeuser, and your project files are visible there (bind mount works).- Inside the container,
claudeauthenticates successfully and/statusshows the model — and survivesdocker compose down && docker compose up -d(auth persisted in theclaude-configvolume). - Host-side edits to project files appear inside the container without a rebuild.
Setup order
Copy the three template files into your repo, then build and verify. Full commented copies are in references/.
-
.docker/Dockerfile— copy references/Dockerfile verbatim. It is Anthropic's published devcontainer image:node:20, non-rootnodeuser, dev tools,git-delta, zsh+powerlevel10k,@anthropic-ai/claude-codeinstalled globally, and a passwordless-sudo rule scoped to onlyinit-firewall.sh. -
.docker/init-firewall.sh— copy references/init-firewall.sh. Edit thefor domain in ...allowlist (see Tuning the allowlist) to match what your project actually needs. GitHub IP ranges are fetched dynamically; you only list extra domains. -
docker-compose.yml— copy references/docker-compose.yml into the repo root. Replace the<project>placeholder incontainer_name. Adjust the published port (5173= Vite default) to your dev server. For a Rust/Haskell project, setINSTALL_RUST/INSTALL_HASKELLto"true"here and uncomment the matching registry block in step 2 — see Language toolchains. -
Build & start:
docker compose build # 5–10 min first time (apt, zsh-in-docker, claude install) docker compose up -d docker compose logs dev # confirm the two "Firewall verification passed" linesIf
docker compose buildfails withdial tcp: lookup production.cloudfront.docker.com ... server misbehaving, that's a transient Docker Hub DNS hiccup — just re-rundocker compose build. -
Authenticate Claude Code inside the container — follow references/authentication.md. The key trap: the OAuth localhost callback can't reach the container, so you copy the URL to a host browser and paste the returned code back at the
Paste code here if promptedprompt. -
Verify against the deliverables above.
Tuning the egress allowlist
init-firewall.sh sets default-deny and only permits: DNS, SSH, localhost, the host /24, dynamically-fetched GitHub ranges, plus the domains you list in the for domain in ... loop. The template ships with:
for domain in \
"registry.npmjs.org" \
"api.anthropic.com" \
"api.cloudflare.com" \
"dash.cloudflare.com" \
"workers.cloudflare.com"; do
registry.npmjs.org— required fornpm install.api.anthropic.com— required for Claude Code to reach the model. (Using Bedrock/Vertex/Foundry instead? Swap in that provider's endpoint.)- Cloudflare entries — only if you deploy to Cloudflare. Drop them otherwise.
- Add the registry of any other package manager (
registry.yarnpkg.com), private registries, or CDN hosts your toolchain fetches from at runtime.
The telemetry-domain DNS trap — and the OPTIONAL list that defuses it. The main loop does
exit 1if any listed domain fails to resolve, and that failure kills the container (the firewall is the entrypoint). Anthropic's reference list includesstatsig.anthropic.com,sentry.io, and VS Code Marketplace domains — andstatsig.anthropic.comdoesn't even exist anymore (no A record), so blindly copying it guarantees the failure path. The template therefore has a second, non-fatal OPTIONAL loop: a failed resolve there logs a WARN and continues. Put nice-to-have egress in it — the real Statsig endpoints (statsig.com,api.statsig.com,featuregates.org,statsigapi.net,prodregistryv2.org— one shared anycast IP) and your production hostname, so the in-container agent can verify its own deploys (curl /health). Keepsentry.ioand VS Code domains out entirely.
The /model picker hides flag-gated models — env is the lever, not egress. The picker's roster is driven by Statsig feature flags. With the
CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC=1umbrella set, new flag-gated models (e.g. Fable 5) silently never appear, even though--model <id>works (entitlement is server-side). Fix: split the umbrella into its parts — keepDISABLE_AUTOUPDATER=1,DISABLE_FEEDBACK_COMMAND=1,DISABLE_ERROR_REPORTING=1, leaveDISABLE_TELEMETRYunset (the compose template does this). Empirically the flags arrive viaapi.anthropic.com, so the picker works even if Statsig egress stays blocked; the optional Statsig entries just let the telemetry uploads succeed too.
Two robustness fixes are baked into the template (learned from real failures; keep them):
digretry. The embedded Docker DNS can intermittently time out at start — worse when several sandboxes come up at once. A single faileddigwouldexit 1and kill the container, so the resolve loop retries up to 5×. This is the safety net the telemetry-trap note above warns you need.ipset add -exist. Providers like Cloudflare serve many hostnames from a shared anycast IP. The same IP can already be in the set from an earlier domain; without-existthe duplicate add returns non-zero andset -ekills the container mid-config. Corollary: because filtering is IP-based, you cannot allow one anycast hostname while blocking another that resolves to the same IP (e.g.docs.mcp.cloudflare.comvsbindings.mcp.cloudflare.com). Control which servers are used at the app layer (e.g..mcp.json), not the firewall.
After editing the allowlist you must rebuild, because the script is COPYd into the image:
docker compose down && docker compose build && docker compose up -d
⚠️ Run rebuild/up from the project directory with NO -f flag — see the override-loading trap in Gotchas.
Keeping the agent current and autonomous
Three patterns the compose template's startup command implements (all learned the
hard way; each is independently deletable):
- Claude Code goes stale unless you update it via npm at container start. The
image bakes whatever
latestwas at build time, and the native auto-updater can't fix it: its download host (downloads.claude.ai) is outside the egress allowlist by design. New-model support (e.g. Fable 5) ships in new CLI versions, so a stale binary = missing models. The fix uses the already-allowlisted npm registry:npm i -g @anthropic-ai/claude-code@lateston every start (the official upgrade path for npm installs — notnpm update -g), withDISABLE_AUTOUPDATER=1kept on so updates stay deterministic (start-time only, never mid-session). Same line reinstallspnpm, which lives in the container layer and vanishes on every recreation (corepack enablefails — /usr/local/bin isn't writable bynode). - Default model via env:
ANTHROPIC_MODEL=<alias-or-id>in the composeenvironmentpins the startup model without touching the picker (useful when a flag-gated model hasn't reached the picker yet, or to keep an autonomous loop on a specific tier)./modelstill switches per session. - bypassPermissions by default — in the right scope. For unattended loops, the
startup command writes
permissions.defaultMode = "bypassPermissions"into the container-scope user settings ($CLAUDE_CONFIG_DIR/settings.json, a named volume) withjq. Putting it there and not in the repo-shared.claude/settings.jsonis the point: the same repo opened on the host keeps normal prompting. This is exactly the setupbypassPermissionsis documented for (isolated container, OS-level boundary), and deny rules still apply in bypass mode — aBash(git push:*)deny keeps holding (pair with thesandboxed-agent-git-relayskill for credential-free push/PR/merge).
Language toolchains (Rust / Haskell)
The image is Node-first (Claude Code needs it). Rust and Haskell are added only when you flip a build arg, so a TS project stays the small original image.
Enable in docker-compose.yml under build.args (and rebuild):
INSTALL_RUST: "true" # rustup + cargo, pinned RUST_VERSION
INSTALL_HASKELL: "false" # GHCup + GHC + cabal — heavy, see warning
The one rule that explains the whole design: build-time vs runtime network
The firewall is the container entrypoint — it runs at docker compose up, after the image is already built. Toolchain installation happens earlier, during docker compose build, where there is no firewall. Two consequences:
| Installed/fetched | Needs firewall allowlist entry? | |
|---|---|---|
| Compiler/runtime (rustc, GHC, cabal) | build time (Dockerfile RUN) | No — CDN reached before firewall exists |
| Browser binary (Playwright Chromium) | build time (playwright install --with-deps chromium) | No — baked into the image, never re-fetched at runtime |
Dependencies (cargo build, cabal build) | runtime, in-container | Yes — registry must be allowlisted |
So in init-firewall.sh you add only the package registries, not the toolchain CDNs:
- Rust →
index.crates.io,static.crates.io(addstatic.rust-lang.orgonly if you runrustup update/add toolchains at runtime) - Haskell →
hackage.haskell.org(adddownloads.haskell.orgonly if youghcup installat runtime)
The commented blocks are already in init-firewall.sh; uncomment your language and rebuild (the script is COPYd into the image). And the attack you care about — build.rs / Setup.hs running arbitrary code — fires at runtime, where the firewall is active. That's the whole point.
The browser row generalizes the same move: anything whose network need is only at build
time (a toolchain, a browser, apt-installed system libs) can be baked into the image and
then used at runtime without ever widening the egress allowlist. For the worked example —
baking Playwright Chromium so a full e2e suite runs in-container with zero runtime egress
(plus the --no-sandbox gate the missing SYS_ADMIN cap forces) — see the
cloudflare-workers-e2e-playwright skill.
Warnings
- Haskell is heavy: GHC adds several GB and ~10–20 min to the first build. Enable
INSTALL_HASKELLonly on Haskell projects. - One language per project: you can set both true, but the image balloons. Prefer one toolchain per repo.
- Pin versions:
RUST_VERSION/GHC_VERSION/CABAL_VERSIONare build args. Pinning keeps the one-time build-time fetch (itself a supply-chain surface) reproducible. - Verify in-container: after
up,cargo --version/ghc --version && cabal --versionshould work alongsideclaude.
Daily workflow
Each in its own host terminal:
# A: dev server (runs inside container, bridged to host)
docker compose up -d
docker compose exec dev zsh
# then, in-container: npm run dev -- --host 0.0.0.0 → http://localhost:<port>
# B: the agent
docker compose exec dev zsh
# then, in-container: claude
# C: edit on the host
nvim .
# D: git on the host (NOT in the container)
git add -p && git commit && git push
Lifecycle: exit/Ctrl-D leaves the shell (container keeps running). docker compose stop pauses, docker compose down removes the container+network but keeps named volumes (auth survives). docker compose down -v wipes volumes too — you'll have to re-authenticate Claude.
Gotchas
--dangerously-skip-permissionsis rejected as root. The image runs as non-rootnodespecifically so you can use it (and the firewall is the real boundary). The compose file setsuser: node— don't override it to root.- Bubblewrap-based
/sandboxinside the container needsenableWeakerNestedSandbox: truebecause an unprivileged container can't mount a fresh/proc. You usually don't need it — the container is the sandbox. Don't nest unless you have a specific reason. docker/ Windows binaries don't work in the firewall'd container — by design; this is a leaf dev environment, not a Docker-in-Docker host.- First MCP server start is slow if
.mcp.jsonusesnpx -y <pkg>(fetches on first run). Cached afterward in the container home. - New external service added mid-project → its domain won't resolve/connect until you add it to the allowlist and rebuild. The symptom is a hang or
Connection refusedto a brand-new host. - Scaffolding a project non-interactively inside the container (e.g.
npx sv create,create-vite,create-next-app) has its own prompt-stall traps — see references/scaffold-notes.md. -fsilently disablesdocker-compose.override.yml. Compose auto-loadsdocker-compose.override.ymlonly when you run from the project directory without-f. The moment you passdocker compose -f /path/to/docker-compose.yml up, the override is not merged — any mounts/ports/env it added (e.g. the host-skills mount) silently vanish, and the container comes back missing them with no error. Alwayscdinto the project dir and run plaindocker compose .... Diagnose withdocker compose config(shows the merged result) vsdocker inspect <container> --format '{{json .Mounts}}'(shows what the running container actually has) — if they disagree, an-finvocation recreated it without the override.
Mounting host skills into the container
The bind mount only exposes the project (/workspace). Claude Code skills that live outside the project — e.g. a personal skills repo you maintain as a sibling directory — are invisible to the in-container agent, so its ~/.claude/skills is empty.
Expose them read-only via a gitignored docker-compose.override.yml (single source of truth, no copy → no drift):
# docker-compose.override.yml (gitignore this — it encodes a host-specific path)
services:
dev:
volumes:
- ../my-skills/skills:/home/node/.claude/skills:ro
The named claude-config volume still owns the rest of ~/.claude (auth persists); only the skills subpath is the bind. Each skills/<name>/SKILL.md becomes a user-scope skill in the container. Re-up from the project dir (no -f, per the gotcha above) and verify with docker compose exec -T dev ls /home/node/.claude/skills. Project-scope skills go the normal way — commit them to <project>/.claude/skills/, which is already inside the /workspace bind mount.
What this skill deliberately does NOT do
- It does not install or configure VS Code, Dev Containers extension, or
@devcontainers/cli(adding the latter means a hostnpm install, defeating the point). - It does not put git credentials in the container.
- It does not TLS-inspect egress (the firewall filters by hostname only). For exfil-resistant setups, front it with a MITM proxy that terminates TLS.
Gives 0 of the 12 instructions most context ai engineering skills give in ~4.7k tokens
Counted across 1,193 of the 1,976 authors here whose files we hold, read 2026-08-06
- dispatch a fresh implementer subagent per taskin 48 of 1193, across 19 files
- dispatch final reviewer after all tasksin 37 of 1193, across 11 files
- provide full task text to the subagentin 31 of 1193, across 10 files
- review spec compliance before code qualityin 27 of 1193, across 10 files
- make the hook script executablein 26 of 1193, across 8 files
- re-snapshot after navigation or DOM changesin 25 of 1193, across 17 files
- answer subagent questions before proceedingin 22 of 1193, across 7 files
- mark task complete in TodoWrite after approvalin 22 of 1193, across 6 files
- merge hook into existing settingsin 21 of 1193, across 3 files
- read files before editing themin 21 of 1193, across 9 files
- ask if installation is global or projectin 20 of 1193, across 2 files
- copy the hook script to target locationin 20 of 1193, across 2 files
Said here and by no other author read
- copy the provided dockerfile verbatim
- copy the provided firewall script
- copy the provided docker-compose template
- edit the egress allowlist domains
- rebuild the image after changing firewall rules
- run compose commands from the project directory
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.