Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit c193dbc

Browse files
jlaustillclaude
andcommitted
Use docker-devbox:latest as default image
The docker-devbox image extends claude-code-sandbox with RE and embedded development tools (Ghidra, Rizin, pwntools, PlatformIO, etc.) See: https://github.com/jlaustill/docker-devbox Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 782efeb commit c193dbc

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import os from "os";
44
import { SandboxConfig } from "./types";
55

66
const DEFAULT_CONFIG: SandboxConfig = {
7-
dockerImage: "claude-code-sandbox:latest",
7+
dockerImage: "docker-devbox:latest",
88
autoPush: true,
99
autoCreatePR: true,
1010
autoStartClaude: true,

src/container.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export class ContainerManager {
6767
}
6868

6969
private async ensureImage(): Promise<void> {
70-
const imageName = this.config.dockerImage || "claude-code-sandbox:latest";
70+
const imageName = this.config.dockerImage || "docker-devbox:latest";
7171

7272
// Check if image already exists
7373
try {
@@ -250,7 +250,7 @@ exec claude --dangerously-skip-permissions' > /start-claude.sh && \\
250250

251251
// Create container
252252
const container = await this.docker.createContainer({
253-
Image: this.config.dockerImage || "claude-code-sandbox:latest",
253+
Image: this.config.dockerImage || "docker-devbox:latest",
254254
name: `${
255255
this.config.containerPrefix || "claude-code-sandbox"
256256
}-${Date.now()}`,

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ export class ClaudeSandbox {
212212
credentials,
213213
workDir,
214214
repoName,
215-
dockerImage: this.config.dockerImage || "claude-sandbox:latest",
215+
dockerImage: this.config.dockerImage || "docker-devbox:latest",
216216
prFetchRef,
217217
remoteFetchRef,
218218
};

0 commit comments

Comments
 (0)