What problem does it solve?
When Unix-side debugging or testing is needed, use the repository's test devcontainer defined at test/devcontainer/devcontainer.json as the default disposable environment. Manage its lifecycle through the devcontainer CLI rather than using ad hoc Docker commands. The container's /workspace contains the full source code. Operations inside /workspace do not need to worry about polluting the source code.
Core Features & Use Cases
- Start and manage a disposable containerized workspace for Unix-based debugging, builds, and tests.
- Operate inside /workspace to run, iterate, and validate changes without touching the host system.
- Execute commands inside the running container with devcontainer exec for deterministic workflows and reproducible results.
- Synchronize host changes into the container workspace when needed via the provided scripts, preserving a clean host environment.
Quick Start
Start the disposable test environment with the devcontainer CLI using the manifest at test/devcontainer/devcontainer.json.