Skip to content

Commit ee081f3

Browse files
centdixclaude
andcommitted
fix: mount ~/.codex by default instead of via extraMounts config
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 5eb692b commit ee081f3

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

.wmdev.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ profiles:
1515
sandbox:
1616
name: sandbox
1717
image: workmux-sandbox
18-
extraMounts:
19-
- hostPath: ~/.codex
20-
guestPath: /root/.codex
21-
writable: true
2218
envPassthrough:
2319
- AWS_ACCESS_KEY_ID
2420
- AWS_SECRET_ACCESS_KEY

backend/src/docker.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,10 @@ export function buildDockerRunArgs(
187187
args.push("-v", `${mainRepoDir}/.git:${mainRepoDir}/.git`);
188188
args.push("-v", `${mainRepoDir}:${mainRepoDir}:ro`);
189189

190-
// Claude config mounts.
190+
// Agent config mounts.
191191
args.push("-v", `${home}/.claude:/root/.claude`);
192192
args.push("-v", `${home}/.claude.json:/root/.claude.json`);
193+
args.push("-v", `${home}/.codex:/root/.codex`);
193194

194195
// Compute which guest paths are already covered by extraMounts so credential
195196
// mounts for the same path can be skipped (extraMounts win).

0 commit comments

Comments
 (0)