Files
docker-docs/data/sandbox-cli/docker_sandbox_create_claude.yaml
David Karlsson 66ff3c700c update sandbox cli ref (#24042)
- **sandboxes: regenerate, vendor cli reference docs**
- **chore: move `docker sandbox create` to a section page**

---------

Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
2026-01-30 12:53:35 +01:00

71 lines
1.8 KiB
YAML

command: docker sandbox create claude
short: Create a sandbox for claude
long: |-
Create a sandbox with access to a host workspace for claude.
The workspace path is required and will be exposed inside the sandbox at the same path as on the host.
Use 'docker sandbox run SANDBOX' to start claude after creation.
usage: docker sandbox create claude WORKSPACE
pname: docker sandbox create
plink: docker_sandbox_create.yaml
options:
- option: patch-settings
value_type: bool
default_value: "false"
description: Intercept claude settings API call and patch payload
deprecated: false
hidden: true
experimental: false
experimentalcli: false
kubernetes: false
swarm: false
inherited_options:
- option: debug
shorthand: D
value_type: bool
default_value: "false"
description: Enable debug logging
deprecated: false
hidden: false
experimental: false
experimentalcli: false
kubernetes: false
swarm: false
- option: socket
value_type: string
description: |
Connect to daemon at specific socket path (for development/debugging)
deprecated: false
hidden: true
experimental: false
experimentalcli: false
kubernetes: false
swarm: false
examples: |-
### Create a Claude sandbox in the current directory
```console
$ docker sandbox create claude .
```
### Create with an absolute path
```console
$ docker sandbox create claude /home/user/my-project
```
### Create and then run
```console
$ docker sandbox create --name my-claude claude ~/my-project
$ docker sandbox run my-claude
```
deprecated: false
hidden: false
experimental: false
experimentalcli: false
kubernetes: false
swarm: false