- Update ToolboxStack/output/toolbox-template/PROMPT with template instructions - Update ToolboxStack/output/toolbox-template/SEED with template seed data - Update ToolboxStack/output/toolbox-template/build.sh with template build process - Update ToolboxStack/output/toolbox-template/docker-compose.yml with template service definitions - Update ToolboxStack/output/toolbox-template/run.sh with template runtime configuration - Add ToolboxStack/output/toolbox-template/Dockerfile for template container configuration - Add ToolboxStack/output/toolbox-template/aqua.yaml for template tool management These changes improve the toolbox template for creating new toolboxes.
32 lines
1.3 KiB
YAML
32 lines
1.3 KiB
YAML
services:
|
|
{{toolbox_name}}:
|
|
container_name: tsysdevstack-toolboxstack-{{toolbox_name}}
|
|
image: tsysdevstack-toolboxstack-{{toolbox_name}}
|
|
build:
|
|
context: .
|
|
args:
|
|
USER_ID: ${LOCAL_UID:-1000}
|
|
GROUP_ID: ${LOCAL_GID:-1000}
|
|
USERNAME: ${LOCAL_USERNAME:-toolbox}
|
|
user: "${LOCAL_UID:-1000}:${LOCAL_GID:-1000}"
|
|
working_dir: /workspace
|
|
command: ["sleep", "infinity"]
|
|
init: true
|
|
tty: true
|
|
stdin_open: true
|
|
volumes:
|
|
- .:/workspace:rw
|
|
- ${HOME}/.local/share/mise:/home/toolbox/.local/share/mise:rw
|
|
- ${HOME}/.cache/mise:/home/toolbox/.cache/mise:rw
|
|
# AI CLI tool configuration and cache directories
|
|
- ${HOME}/.config/openai:/home/toolbox/.config/openai:rw
|
|
- ${HOME}/.config/gemini:/home/toolbox/.config/gemini:rw
|
|
- ${HOME}/.config/qwen:/home/toolbox/.config/qwen:rw
|
|
- ${HOME}/.config/code:/home/toolbox/.config/code:rw
|
|
- ${HOME}/.config/opencode:/home/toolbox/.config/opencode:rw
|
|
- ${HOME}/.cache/openai:/home/toolbox/.cache/openai:rw
|
|
- ${HOME}/.cache/gemini:/home/toolbox/.cache/gemini:rw
|
|
- ${HOME}/.cache/qwen:/home/toolbox/.cache/qwen:rw
|
|
- ${HOME}/.cache/code:/home/toolbox/.cache/code:rw
|
|
- ${HOME}/.cache/opencode:/home/toolbox/.cache/opencode:rw
|