- Node-guardian running on MacBook and updating metrics - NODE2 agents (Atlas, Greeter, Oracle, Builder Bot) assigned to node-2-macbook-m4max - Swapper models displaying correctly (8 models) - DAGI Router agents showing with correct status (3 active, 1 stale) - Router health check using node_cache for remote nodes
22 lines
310 B
Bash
Executable File
22 lines
310 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Stop Phase 2 Agent Integration Services
|
|
|
|
echo "🛑 Stopping DAARION Phase 2 Services..."
|
|
echo ""
|
|
|
|
docker-compose -f docker-compose.agents.yml down
|
|
|
|
echo ""
|
|
echo "✅ Phase 2 services stopped"
|
|
echo ""
|
|
echo "To remove volumes:"
|
|
echo " docker-compose -f docker-compose.agents.yml down -v"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|