5 ms·
I tried Docker Sandboxes but last time I checked you could not configure custom volume mounts, making more complex setups impossible. For work I need two direct
by meffmadd 1mo ago
I tried Docker Sandboxes but last time I checked you could not configure custom volume mounts, making more complex setups impossible. For work I need two directories for context for the agent to have access to…
- cyberpunk 1mo agoput them both inside another directory and share that? what am i missing?
- meffmadd 1mo agoOf course, but that was not part of my workflow and I found it quite strange that this was simply not possible especially when docker-compose can easily do this
- deleted 1mo ago[deleted]
- mikesir87 1mo agoWhen starting a sandbox, you can specify the mountpoints you want. It just defaults to the current directory. You can also specify some of those mounts as read-only as well. Example: sbx run claude ./ ../another-project:ro
- notsirius 1mo agoThis was added recently https://docs.docker.com/ai/sandboxes/usage/#multiple-workspaces https://docs.docker.com/ai/sandboxes/usage/#multiple-workspa... ` sbx run claude ~/project-a ~/shared-libs:ro ~/docs:ro`