HolyCode: Docker Container for Persistent Claude AI Coding Environments

What HolyCode Does
HolyCode is a Docker container setup designed to solve the problem of losing coding momentum when switching machines or rebuilding development environments. Instead of repeatedly installing tools, fixing browser issues, and rewiring configurations, HolyCode provides a single Docker setup that keeps your working state intact.
Key Features for Claude Users
- Persistent context between sessions: Your state lives in
./data/opencode, so sessions, settings, and plugins survive container updates. - Preconfigured environment: 30+ tools are preinstalled and ready, eliminating setup time each time you start working.
- Working browser automation: In-container Chromium + xvfb + Playwright are already wired with stability defaults including
shm_size: 2g. - Claude-first workflow: Anthropic flow is supported with optional toggles for Claude subscription authentication and multi-agent mode.
- Production-tested: The creator runs this as a daily driver, with decisions based on fixing repeated pain in production-like use.
Quick Start Configuration
Create a docker-compose.yml file with:
services:
holycode:
image: coderluii/holycode:latest
restart: unless-stopped
shm_size: 2g
ports:
- "4096:4096"
volumes:
- ./data/opencode:/home/opencode
- ./workspace:/workspace
environment:
- PUID=1000
- PGID=1000
- ANTHROPIC_API_KEY=your-key-hereThen run:
docker compose up -dOpen http://localhost:4096 to start building.
Availability
HolyCode is free and open source. The Docker image is available at coderluii/holycode on Docker Hub, and the source code is on GitHub at https://github.com/coderluii/holycode.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude Code v2.1.144: Background Sessions, /model Scoping, and 15s Startup Timeout
Claude Code v2.1.144 adds /resume for background sessions, scopes /model to current session only, and fixes a 75s startup hang when api.anthropic.com is unreachable with a 15s timeout.

Krasis: Hybrid CPU/GPU Runtime for Large MoE Models Achieves 3,324 tok/s Prefill on RTX 5080
Krasis is a hybrid CPU/GPU runtime that runs large MoE models by handling prefill on GPU and decode on CPU, achieving 3,324 tokens/second prefill on an RTX 5080 with Qwen3-Coder-Next 80B Q4. It requires ~2.5x model size in system RAM but enables running models too large for VRAM.

TestThread: Open Source Testing Framework for AI Agents
TestThread is an open source testing framework for AI agents that runs tests against live endpoints, provides pass/fail results with AI diagnosis, and includes features like semantic matching, PII detection, and CI/CD integration.

McPherson AI releases two new QSR operations skills on ClawHub: food cost diagnostics and labor leak auditing
Two new free skills have been published on ClawHub: qsr-food-cost-diagnostic catches COGS issues weekly with a four-lever diagnostic, and qsr-labor-leak-auditor provides daily labor tracking with mid-week alerts to prevent overspend.