1.2 KiB
1.2 KiB
Docker Sandbox Build
This repository contains the build-sbx.sh utility used to create and
configure Docker sandboxes. The script is intentionally interactive so that
the sandbox name, mounted workspaces, copied data, API key, and cleanup actions
are explicit.
Requirements
- Bash
sbxjqfzfwhen copying an existing sandbox
Run the utility from a shell with access to the sbx command:
./build-sbx.sh
Commit Conventions
This project uses Conventional Commits. The project is below version 1.0.0, so changes must not intentionally introduce breaking behavior. Every commit uses a type and a scope.
Supported types:
feat: adds or extends behaviorfix: corrects behaviordocs: changes documentationstyle: changes formatting without changing behaviorrefactor: changes implementation without changing behavior
Established scopes:
kit: sandbox kit, image template, creation, and configurationworkspace: workspace selection, naming, and cleanup workflowdocs: README and project documentation
Examples:
feat(kit): create configured sandbox image
docs(docs): document commit conventions