Address all critical review comments: 1. Fix malformed Docker tags - Change tag suffixes from colons to hyphens - standalone: 1.0.0-standalone (not 1.0.0:standalone) - combined: 1.0.0 and latest (not :latest) 2. Add checkout ref for manual triggers - Use inputs.tag for workflow_dispatch events - Ensures manual builds use correct tag ref 3. Add tag input validation - Validate tag format (mcp-vX.Y.Z) before processing - Provide clear error messages for invalid input 4. Fix release summary overwriting - Both matrix jobs now append to summary correctly - Each variant creates distinct summary section 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
49 lines
No EOL
1.5 KiB
YAML
49 lines
No EOL
1.5 KiB
YAML
services:
|
|
falkordb:
|
|
image: falkordb/falkordb:latest
|
|
ports:
|
|
- "6379:6379" # Redis/FalkorDB port
|
|
- "3000:3000" # FalkorDB web UI
|
|
environment:
|
|
- FALKORDB_PASSWORD=${FALKORDB_PASSWORD:-}
|
|
volumes:
|
|
- falkordb_data:/data
|
|
healthcheck:
|
|
test: ["CMD", "redis-cli", "-p", "6379", "ping"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
start_period: 10s
|
|
|
|
graphiti-mcp:
|
|
image: zepai/knowledge-graph-mcp:standalone
|
|
# Note: When building locally, this will use the local build.
|
|
# For production, pull from registry with the version tag you need
|
|
build:
|
|
context: ..
|
|
dockerfile: docker/Dockerfile.standalone
|
|
env_file:
|
|
- path: ../.env
|
|
required: false
|
|
depends_on:
|
|
falkordb:
|
|
condition: service_healthy
|
|
environment:
|
|
# Database configuration
|
|
- FALKORDB_URI=${FALKORDB_URI:-redis://falkordb:6379}
|
|
- FALKORDB_PASSWORD=${FALKORDB_PASSWORD:-}
|
|
- FALKORDB_DATABASE=${FALKORDB_DATABASE:-default_db}
|
|
# Application configuration
|
|
- GRAPHITI_GROUP_ID=${GRAPHITI_GROUP_ID:-main}
|
|
- SEMAPHORE_LIMIT=${SEMAPHORE_LIMIT:-10}
|
|
- CONFIG_PATH=/app/mcp/config/config.yaml
|
|
- PATH=/root/.local/bin:${PATH}
|
|
volumes:
|
|
- ../config/config-docker-falkordb.yaml:/app/mcp/config/config.yaml:ro
|
|
ports:
|
|
- "8000:8000" # Expose the MCP server via HTTP transport
|
|
command: ["uv", "run", "main.py"]
|
|
|
|
volumes:
|
|
falkordb_data:
|
|
driver: local |