From 30f24218aedb0bfce38eb4e208968a4868b11783 Mon Sep 17 00:00:00 2001 From: ClaudeBot Date: Thu, 29 May 2025 15:48:22 +0000 Subject: [PATCH] fix: correct Claude Code image name in .env.example Remove incorrect '-runner' suffix from CLAUDE_CONTAINER_IMAGE. The correct image name is 'claudecode:latest' to match docker-compose.yml. Fixes #116 --- .env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.example b/.env.example index ad2c649..f5eab90 100644 --- a/.env.example +++ b/.env.example @@ -24,7 +24,7 @@ ANTHROPIC_API_KEY=your_anthropic_api_key_here # Container Settings CLAUDE_USE_CONTAINERS=1 -CLAUDE_CONTAINER_IMAGE=claude-code-runner:latest +CLAUDE_CONTAINER_IMAGE=claudecode:latest REPO_CACHE_DIR=/tmp/repo-cache REPO_CACHE_MAX_AGE_MS=3600000 CONTAINER_LIFETIME_MS=7200000 # Container execution timeout in milliseconds (default: 2 hours)