feat: add MSYS path fix, Claude Code CLI, and Windows instructions

- Prevent MSYS from converting Unix container paths on Windows
- Install @anthropic-ai/claude-code globally in the Docker image
- Add Windows platform instructions to README
This commit is contained in:
ezl-keygraph
2026-02-16 20:04:51 +05:30
parent ce2628f6f0
commit e85f6e0c73
3 changed files with 11 additions and 0 deletions
+5
View File
@@ -3,6 +3,11 @@
set -e
# Prevent MSYS from converting Unix paths (e.g. /repos/my-repo) to Windows paths
case "$OSTYPE" in
msys*) export MSYS_NO_PATHCONV=1 ;;
esac
# Detect Podman vs Docker and set compose files accordingly
# Podman doesn't support host-gateway, so we only include the Docker override for actual Docker
COMPOSE_BASE="docker-compose.yml"