mirror of
https://github.com/docker/docs.git
synced 2026-04-05 10:48:55 +07:00
Add full documentation for the sbx CLI sandbox experience including get-started, usage guide, architecture, agents (claude-code, codex, copilot, gemini, kiro, opencode, cagent, custom-environments), security (isolation, credentials, policy, workspace trust), troubleshooting, and FAQ. Update _index.md as the section landing page. Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
name: sbx completion bash
|
|
synopsis: Generate the autocompletion script for bash
|
|
description: |
|
|
Generate the autocompletion script for the bash shell.
|
|
|
|
This script depends on the 'bash-completion' package.
|
|
If it is not installed already, you can install it via your OS's package manager.
|
|
|
|
To load completions in your current shell session:
|
|
|
|
source <(sbx completion bash)
|
|
|
|
To load completions for every new session, execute once:
|
|
|
|
#### Linux:
|
|
|
|
sbx completion bash > /etc/bash_completion.d/sbx
|
|
|
|
#### macOS:
|
|
|
|
sbx completion bash > $(brew --prefix)/etc/bash_completion.d/sbx
|
|
|
|
You will need to start a new shell for this setup to take effect.
|
|
usage: sbx completion bash
|
|
options:
|
|
- name: help
|
|
shorthand: h
|
|
default_value: "false"
|
|
usage: help for bash
|
|
- name: no-descriptions
|
|
default_value: "false"
|
|
usage: disable completion descriptions
|
|
inherited_options:
|
|
- name: debug
|
|
shorthand: D
|
|
default_value: "false"
|
|
usage: Enable debug logging
|
|
see_also:
|
|
- sbx completion - Generate the autocompletion script for the specified shell
|