* conductor-checkpoint-start * conductor-checkpoint-msg_0121yRVkMGS2UzMazKiZkgi4 * conductor-checkpoint-msg_01NvLs9EFt8qNiQqtYY8V9WV * conductor-checkpoint-msg_013iKczSUmjtzPEdcgciXJUd * conductor-checkpoint-msg_01BFgirbgmehsEGCMWjgSsnv * conductor-checkpoint-msg_01TA4DYecHTJ36ndBsU9ooyf * Fix critical issues in MCP release workflow 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> * conductor-checkpoint-msg_01H4GqBSkLiPgUfHGD57nq5V * conductor-checkpoint-msg_01T2zdZLAZpVSip6EaiYa66k * Address code review findings - fix critical checkout ref bug Fix all critical and high-priority issues from code review: 1. Fix checkout ref logic (CRITICAL) - Simplified to: ref: ${{ inputs.tag || github.ref }} - Works correctly for both workflow_dispatch and push events - Removes conditional logic that would fail for manual triggers 2. Consolidate tag validation - Remove duplicate validation logic - Single validation path for both trigger types - Clearer error messages with received value 3. Add PyPI error handling - Use curl -sf for proper error codes - Validate GRAPHITI_VERSION is not empty - Exit with clear error if PyPI fetch fails 4. Improve docker-compose comments - Add concrete version tag examples - Show users how to pin specific versions - Clarify when local build vs registry pull is used 5. Update workflow_dispatch description - Clarify tag must already exist in repo - Prevent user confusion about tag creation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * conductor-checkpoint-msg_01KgG6FyiqNNdc51BCehNBjm * Fix error handling bug in PyPI version fetch The previous error handling was broken due to set -e causing immediate exit, making the $? check unreachable. Changes: - Use set -eo pipefail for proper pipeline error handling - Check command success with if ! command; then pattern - Separate check for empty version string - Both checks now properly reachable and functional 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> --------- Co-authored-by: Claude <noreply@anthropic.com>
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
services:
|
|
graphiti-falkordb:
|
|
image: zepai/knowledge-graph-mcp:latest
|
|
build:
|
|
context: ..
|
|
dockerfile: docker/Dockerfile
|
|
args:
|
|
GRAPHITI_CORE_VERSION: ${GRAPHITI_CORE_VERSION:-0.22.0}
|
|
MCP_SERVER_VERSION: ${MCP_SERVER_VERSION:-1.0.0}
|
|
BUILD_DATE: ${BUILD_DATE:-}
|
|
VCS_REF: ${VCS_REF:-}
|
|
env_file:
|
|
- path: ../.env
|
|
required: false
|
|
environment:
|
|
# FalkorDB configuration
|
|
- FALKORDB_PASSWORD=${FALKORDB_PASSWORD:-}
|
|
# MCP Server configuration
|
|
- FALKORDB_URI=redis://localhost:6379
|
|
- FALKORDB_DATABASE=${FALKORDB_DATABASE:-default_db}
|
|
- 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:
|
|
- falkordb_data:/var/lib/falkordb/data
|
|
- mcp_logs:/var/log/graphiti
|
|
ports:
|
|
- "6379:6379" # FalkorDB/Redis
|
|
- "3000:3000" # FalkorDB web UI
|
|
- "8000:8000" # MCP server HTTP
|
|
healthcheck:
|
|
test: ["CMD", "redis-cli", "-p", "6379", "ping"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
start_period: 15s
|
|
|
|
volumes:
|
|
falkordb_data:
|
|
driver: local
|
|
mcp_logs:
|
|
driver: local
|