mirror of
https://github.com/sipeed/picoclaw.git
synced 2026-06-12 18:08:54 +00:00
c05742330d
Replace docker-compose (v1) with docker compose (v2) command syntax across all files. Docker Compose v2 is now the default in modern Docker installations and uses 'docker compose' instead of 'docker-compose'. Changes: - scripts/test-docker-mcp.sh: update all 8 docker-compose commands - Makefile: update all 8 docker-compose commands in docker-* targets - No changes to file names (docker-compose.full.yml remains as-is) Compatibility: Requires Docker with Compose v2 plugin (Docker Desktop or docker-compose-plugin package)
50 lines
1.5 KiB
Bash
50 lines
1.5 KiB
Bash
#!/bin/bash
|
|
# Test script for MCP tools in Docker (full-featured image)
|
|
|
|
set -e
|
|
|
|
COMPOSE_FILE="docker-compose.full.yml"
|
|
SERVICE="picoclaw-agent"
|
|
|
|
echo "🧪 Testing MCP tools in Docker container (full-featured image)..."
|
|
echo ""
|
|
|
|
# Build the image
|
|
echo "📦 Building Docker image..."
|
|
docker compose -f "$COMPOSE_FILE" build
|
|
|
|
# Test npx
|
|
echo "✅ Testing npx..."
|
|
docker compose -f "$COMPOSE_FILE" run --rm --entrypoint sh "$SERVICE" -c 'npx --version'
|
|
|
|
# Test npm
|
|
echo "✅ Testing npm..."
|
|
docker compose -f "$COMPOSE_FILE" run --rm --entrypoint sh "$SERVICE" -c 'npm --version'
|
|
|
|
# Test node
|
|
echo "✅ Testing Node.js..."
|
|
docker compose -f "$COMPOSE_FILE" run --rm --entrypoint sh "$SERVICE" -c 'node --version'
|
|
|
|
# Test git
|
|
echo "✅ Testing git..."
|
|
docker compose -f "$COMPOSE_FILE" run --rm --entrypoint sh "$SERVICE" -c 'git --version'
|
|
|
|
# Test python
|
|
echo "✅ Testing Python..."
|
|
docker compose -f "$COMPOSE_FILE" run --rm --entrypoint sh "$SERVICE" -c 'python3 --version'
|
|
|
|
# Test uv
|
|
echo "✅ Testing uv..."
|
|
docker compose -f "$COMPOSE_FILE" run --rm --entrypoint sh "$SERVICE" -c 'uv --version'
|
|
|
|
# Test MCP server installation (quick)
|
|
echo "✅ Testing MCP server install with npx..."
|
|
docker compose -f "$COMPOSE_FILE" run --rm --entrypoint sh "$SERVICE" -c 'npx -y cowsay "MCP works!"'
|
|
|
|
echo ""
|
|
echo "🎉 All MCP tools are working correctly!"
|
|
echo ""
|
|
echo "Next steps:"
|
|
echo " 1. Configure MCP servers in config/config.json"
|
|
echo " 2. Run: docker compose -f $COMPOSE_FILE --profile gateway up"
|