- 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
21 lines
285 B
Bash
Executable File
21 lines
285 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "🛑 Stopping DAARION Phase 3 services..."
|
|
echo ""
|
|
|
|
docker-compose -f docker-compose.phase3.yml down
|
|
|
|
echo ""
|
|
echo "✅ Phase 3 services stopped"
|
|
echo ""
|
|
echo "To remove volumes (DB data):"
|
|
echo " docker-compose -f docker-compose.phase3.yml down -v"
|
|
echo ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|