stop should not down

This commit is contained in:
phact 2025-10-08 16:59:09 -04:00
parent 8e1fd7a7fe
commit 62ee661b15

View file

@ -603,7 +603,7 @@ class ContainerManager:
"""Stop all services and yield progress updates."""
yield False, "Stopping OpenRAG services..."
success, stdout, stderr = await self._run_compose_command(["down"])
success, stdout, stderr = await self._run_compose_command(["stop"])
if success:
yield True, "Services stopped successfully"