-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (29 loc) · 960 Bytes
/
Makefile
File metadata and controls
37 lines (29 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# ARIFOS FLEET COMMAND
# Usage: make status | make up | make logs-zero
# ---------------- CONFIGURATION ----------------
# Adjust these paths to where your actual docker-compose.yaml files are
DIR_AGI = /root/agi-stack
DIR_CLAW = /root/oo0-stack
# ---------------- COMMANDS ----------------
status:
@echo "📡 Scanning Fleet Status..."
docker ps --format "table {{.Names}}\t{{.Status}}\t{{.Ports}}"
up:
@echo "🚀 Launching The Brain (Agent Zero + Qdrant)..."
cd $(DIR_AGI) && docker compose up -d
@echo "🦞 Releasing The Hands (OpenClaw + ArifOS)..."
cd $(DIR_CLAW) && docker compose up -d
@echo "✅ All Systems Green."
down:
@echo "🛑 Shutting down ALL systems..."
docker stop $$(docker ps -q)
restart-zero:
@echo "♻️ Rebooting Agent Zero..."
docker restart agentzero
logs-zero:
docker logs -f agentzero
logs-claw:
docker logs -f openclaw
# ---------------- TUNNEL ----------------
tunnel-check:
systemctl status cloudflared