Fix transfer-desktop-to-sandbox for Helix-in-Helix mode#1585
Merged
lukemarsden merged 1 commit intomainfrom Feb 5, 2026
Merged
Fix transfer-desktop-to-sandbox for Helix-in-Helix mode#1585lukemarsden merged 1 commit intomainfrom
lukemarsden merged 1 commit intomainfrom
Conversation
In Helix-in-Helix mode, the sandbox runs on the host Docker socket
with a different container name (helix-inner-sandbox-${USER}).
Changes:
- Add sandbox_docker() helper function to use correct Docker host
- Use SANDBOX_CONTAINER_NAME variable for the correct container name
- Check for sandbox existence on host Docker in Helix-in-Helix mode
- Use sandbox_docker for all docker exec commands targeting sandbox
This fixes "No such container: helix-sandbox-nvidia-1" errors when
running ./stack build-ubuntu or build-sway in Helix-in-Helix mode.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fix image transfer to sandbox in Helix-in-Helix mode where the sandbox runs on the host Docker socket with a different container name.
Problem
In Helix-in-Helix mode:
DOCKER_HOST_OUTER) not the inner Dockerhelix-inner-sandbox-${USER}nothelix-sandbox-nvidia-1transfer-desktop-to-sandboxfunction was using the wrong Docker socket and container nameThis caused the error:
Changes
sandbox_docker()helper function to use correct Docker host in Helix-in-Helix modeSANDBOX_CONTAINER_NAMEvariable for the correct container namesandbox_dockerfor all docker exec commands targeting sandboxTest plan
./stack build-ubuntuin Helix-in-Helix mode🤖 Generated with Claude Code