Description
Add support for the SANDBOX_FLAGS environment variable for appending additional flags to the docker command.
Benefits
Add additional docker arguments
- Pass additional environment variables for scripts
- Define which docker network to use
Real World Example
With sandbox flags (and a trusted zone in firewall-cmd), I can bind the network to host on my development box.
export SANDBOX_FLAGS="--net=host"
Then any non-fixed ports opened by scripts in the gemini sandbox are accessible from other devices on the network immediately. It would be great if copilot_here could also do this.
Description
Add support for the SANDBOX_FLAGS environment variable for appending additional flags to the docker command.
Benefits
Add additional docker arguments
Real World Example
With sandbox flags (and a trusted zone in firewall-cmd), I can bind the network to host on my development box.
export SANDBOX_FLAGS="--net=host"Then any non-fixed ports opened by scripts in the gemini sandbox are accessible from other devices on the network immediately. It would be great if
copilot_herecould also do this.