Skip to content

Releases: CoderLuii/HolyCode

v1.0.0

31 Mar 07:33

Choose a tag to compare

03/31/2026

The first public release. OpenCode in Docker, ready in under 2 minutes.

What you get

One command. Full AI coding workstation. docker compose up -d and open your browser.

OpenCode AI agent with built-in web UI on port 4096. Provider-agnostic. Bring any API key. Claude, GPT, Gemini, Groq, Bedrock, Azure, Vertex AI, Ollama, and more.

Use your Claude subscription. Enable the Claude Auth plugin and use your existing Claude Max/Pro plan with OpenCode. No separate API key needed. Toggle on with one env var.

Multi-agent orchestration built in. Enable oh-my-openagent and turn OpenCode into a coordinated agent system with parallel execution.

Headless browser that actually works. Chromium + Xvfb + Playwright, pre-configured. Screenshots, scraping, browser automation, all out of the box.

30+ dev tools ready to go. Node.js 22, Python 3, ripgrep, fzf, bat, eza, lazygit, delta, gh CLI, tmux, and more.

Persistent state. One bind mount. Sessions, settings, MCP configs, plugins all survive rebuilds. Move to a new machine and pick up where you left off.

Multi-arch. AMD64 and ARM64.

Quick start

services:
  holycode:
    image: coderluii/holycode:latest
    container_name: holycode
    restart: unless-stopped
    shm_size: 2g
    ports: ["4096:4096"]
    volumes:
      - ./data/opencode:/home/opencode
      - ./workspace:/workspace
    environment:
      - ANTHROPIC_API_KEY=your-key-here

Then open http://localhost:4096

Links