- Update collab/TSYSDevStack-toolbox-prompt.md with latest guidelines - Update output/PROMPT with improved instructions for AI collaboration - Update output/toolbox-base/PROMPT with enhanced development guidelines - Update output/toolbox-base/README.md with current documentation - Update output/toolbox-base/build.sh with improved build process - Update output/toolbox-base/docker-compose.yml with refined service definitions - Update output/toolbox-base/run.sh with enhanced runtime configuration - Add output/toolbox-base/release.sh for release management processes These changes improve the developer workspace experience and ensure consistent tooling across the TSYSDevStack project.
21 lines
653 B
YAML
21 lines
653 B
YAML
services:
|
|
toolbox-base:
|
|
container_name: tsysdevstack-toolboxstack-toolbox-base
|
|
image: ${TOOLBOX_IMAGE:-tsysdevstack-toolboxstack-toolbox-base:release-current}
|
|
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
|