HolyCode: Docker Container for Persistent Claude AI Coding Environments

✍️ OpenClawRadar📅 Published: April 14, 2026🔗 Source
HolyCode: Docker Container for Persistent Claude AI Coding Environments
Ad

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.
Ad

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-here

Then run:

docker compose up -d

Open 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

Ad

👀 See Also