- 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
19 lines
198 B
Bash
19 lines
198 B
Bash
#!/bin/bash
|
|
|
|
# Stop City and Space services
|
|
|
|
set -e
|
|
|
|
echo "🛑 Stopping DAARION City + Space Services..."
|
|
|
|
docker-compose -f docker-compose.city-space.yml down
|
|
|
|
echo "✅ Services stopped!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|