-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Description
Description
When initializing a new Docker sandbox with multiple directory mounts, the CLI appears to incorrectly map local source directories to their respective targets in the sandbox. This behavior specifically occurs when the directory names are similar (e.g., erp, erp-v2, erp-v3).
Instead of the directories mounting to their specified paths, the contents are shifted or swapped (e.g., Target A contains Source B’s data).
Reproduce
-
Navigate to a parent directory (e.g.,
~/Projects) containing three directories:erp,erp-v2, anderp-v3, each with unique identifying files. -
Run the following command to create a sandbox:
docker sandbox run -t "claude-yolo" --name claude-erp-v3 claude ./erp-v3 ./erp:ro ./erp-v2:ro -
Enter the sandbox:
docker sandbox exec -it claude-erp-v3 bash -
Inspect the contents of each directory using
lsorcat.
Observed behavior:
-
The directory intended to be
erp-v3contains data fromerp-v2. -
The directory intended to be
erp-v2contains data fromerp. -
The directory intended to be
erpcontains data fromerp-v3.
Note: If erp is renamed to erp-v1, the mapping works correctly, suggesting a bug in how the CLI parses or orders short-name vs. long-name directory strings.
Expected behavior
The contents of the sandbox should strictly match the mapping provided in the command line arguments:
-
./erp-v3(local)$\rightarrow$ Sandbox Target 1 -
./erp:ro(local)$\rightarrow$ Sandbox Target 2 -
./erp-v2:ro(local)$\rightarrow$ Sandbox Target 3
docker version
Client:
Version: 29.2.1
API version: 1.53
Go version: go1.25.6
Git commit: a5c7197
Built: Mon Feb 2 17:16:37 2026
OS/Arch: darwin/arm64
Context: desktop-linux
Server: Docker Desktop 4.63.0 (220185)
Engine:
Version: 29.2.1
API version: 1.53 (minimum version 1.44)
Go version: go1.25.6
Git commit: 6bc6209
Built: Mon Feb 2 17:16:47 2026
OS/Arch: linux/arm64
Experimental: false
containerd:
Version: v2.2.1
GitCommit: dea7da592f5d1d2b7755e3a161be07f43fad8f75
runc:
Version: 1.3.4
GitCommit: v1.3.4-0-gd6d73eb8
docker-init:
Version: 0.19.0
GitCommit: de40ad0docker info
Client:
Version: 29.2.1
Context: desktop-linux
Debug Mode: false
Plugins:
agent: create or run AI agents (Docker Inc.)
Version: v1.27.1
Path: /Users/nimit/.docker/cli-plugins/docker-agent
ai: Docker AI Agent - Ask Gordon (Docker Inc.)
Version: v1.18.0
Path: /Users/nimit/.docker/cli-plugins/docker-ai
buildx: Docker Buildx (Docker Inc.)
Version: v0.31.1-desktop.1
Path: /Users/nimit/.docker/cli-plugins/docker-buildx
compose: Docker Compose (Docker Inc.)
Version: v5.0.2
Path: /Users/nimit/.docker/cli-plugins/docker-compose
debug: Get a shell into any image or container (Docker Inc.)
Version: 0.0.47
Path: /Users/nimit/.docker/cli-plugins/docker-debug
desktop: Docker Desktop commands (Docker Inc.)
Version: v0.3.0
Path: /Users/nimit/.docker/cli-plugins/docker-desktop
extension: Manages Docker extensions (Docker Inc.)
Version: v0.2.31
Path: /Users/nimit/.docker/cli-plugins/docker-extension
init: Creates Docker-related starter files for your project (Docker Inc.)
Version: v1.4.0
Path: /Users/nimit/.docker/cli-plugins/docker-init
mcp: Docker MCP Plugin (Docker Inc.)
Version: v0.40.1
Path: /Users/nimit/.docker/cli-plugins/docker-mcp
model: Docker Model Runner (Docker Inc.)
Version: v1.1.1
Path: /Users/nimit/.docker/cli-plugins/docker-model
offload: Docker Offload (Docker Inc.)
Version: v0.5.56
Path: /Users/nimit/.docker/cli-plugins/docker-offload
pass: Docker Pass Secrets Manager Plugin (beta) (Docker Inc.)
Version: v0.0.24
Path: /Users/nimit/.docker/cli-plugins/docker-pass
sandbox: Docker Sandbox (Docker Inc.)
Version: v0.12.0
Path: /Users/nimit/.docker/cli-plugins/docker-sandbox
sbom: View the packaged-based Software Bill Of Materials (SBOM) for an image (Anchore Inc.)
Version: 0.6.0
Path: /Users/nimit/.docker/cli-plugins/docker-sbom
scout: Docker Scout (Docker Inc.)
Version: v1.20.0
Path: /Users/nimit/.docker/cli-plugins/docker-scout
Server:
Containers: 18
Running: 0
Paused: 0
Stopped: 18
Images: 28
Server Version: 29.2.1
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Using metacopy: false
Native Overlay Diff: true
userxattr: false
Logging Driver: json-file
Cgroup Driver: cgroupfs
Cgroup Version: 2
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog
CDI spec directories:
/etc/cdi
/var/run/cdi
Swarm: inactive
Runtimes: io.containerd.runc.v2 runc
Default Runtime: runc
Init Binary: docker-init
containerd version: dea7da592f5d1d2b7755e3a161be07f43fad8f75
runc version: v1.3.4-0-gd6d73eb8
init version: de40ad0
Security Options:
seccomp
Profile: builtin
cgroupns
Kernel Version: 6.12.72-linuxkit
Operating System: Docker Desktop
OSType: linux
Architecture: aarch64
CPUs: 8
Total Memory: 7.75GiB
Name: docker-desktop
ID: f9eed2b8-9a66-4d2b-bc82-258b7094f35d
Docker Root Dir: /var/lib/docker
Debug Mode: false
HTTP Proxy: http.docker.internal:3128
HTTPS Proxy: http.docker.internal:3128
No Proxy: hubproxy.docker.internal
Labels:
com.docker.desktop.address=unix:///Users/nimit/Library/Containers/com.docker.docker/Data/docker-cli.sock
Experimental: false
Insecure Registries:
hubproxy.docker.internal:5555
::1/128
127.0.0.0/8
Live Restore Enabled: falseAdditional Info
No response