bdy sandbox exec
$bdy sandbox exec [options] [command]
Execute a command in sandbox. Commands run as buddy with passwordless sudo. Use sudo for package installs
Examples
Ran command in sandboxbdy sb exec command sandbox-identifier "ls -la"$
Ran command in sandbox and wait for it to completebdy sb exec command sandbox-identifier "sleep 10" --wait$
Install package from aptbdy sb exec command sandbox-identifier "sudo apt-get update && sudo apt-get install -y nginx" --wait$
Kill command running in sandboxbdy sb exec kill sandbox-identifier command-id$
Kill command running in sandbox and automatically confirm killingbdy sb exec kill sandbox-identifier command-id -f$
List commands running in sandboxbdy sb exec ls sandbox-identifier$
List commands running in sandbox in different projectbdy sb exec ls sandbox-identifier -p project$
Show logs from commandbdy sb exec logs sandbox-identifier command-id$
Show logs from command and wait for it to completebdy sb exec logs sandbox-identifier command-id --wait$
Show status of commandbdy sb exec status sandbox-identifier command-id$
Show status of command in sandbox from another workspacebdy sb exec status sandbox-identifier command-id -w workspace -p project$