chore: update Docker image for MCP server to feature branch for testing
This commit is contained in:
parent
fb03f9ce93
commit
446a378b03
1 changed files with 4 additions and 2 deletions
|
|
@ -503,7 +503,7 @@ def start_ui(
|
||||||
if start_mcp:
|
if start_mcp:
|
||||||
logger.info("Starting Cognee MCP server with Docker...")
|
logger.info("Starting Cognee MCP server with Docker...")
|
||||||
try:
|
try:
|
||||||
image = "cognee/cognee-mcp:main"
|
image = "cognee/cognee-mcp:feature-standalone-mcp" # TODO: change to main right before merging into main
|
||||||
subprocess.run(["docker", "pull", image], check=True)
|
subprocess.run(["docker", "pull", image], check=True)
|
||||||
|
|
||||||
import uuid
|
import uuid
|
||||||
|
|
@ -538,7 +538,9 @@ def start_ui(
|
||||||
env_file = os.path.join(cwd, ".env")
|
env_file = os.path.join(cwd, ".env")
|
||||||
docker_cmd.extend(["--env-file", env_file])
|
docker_cmd.extend(["--env-file", env_file])
|
||||||
|
|
||||||
docker_cmd.append("cognee/cognee-mcp:main")
|
docker_cmd.append(
|
||||||
|
"cognee/cognee-mcp:feature-standalone-mcp"
|
||||||
|
) # TODO: change to main right before merging into main
|
||||||
|
|
||||||
mcp_process = subprocess.Popen(
|
mcp_process = subprocess.Popen(
|
||||||
docker_cmd,
|
docker_cmd,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue