12 lines
494 B
Bash
12 lines
494 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# start.sh — start Agent0 and the glitch-tunnel.
|
||
|
|
#
|
||
|
|
|
||
|
|
# ── Docker containers ─────────────────────────────────────────────────────────
|
||
|
|
info "Stopping agents and glitch-tunnel..."
|
||
|
|
docker compose down
|
||
|
|
echo "Running git as glitchhunter"
|
||
|
|
sudo -u glitchhunter git -C /home/glitchhunter/Projects/agent0 reset --hard origin/main
|
||
|
|
echo ""
|
||
|
|
info "Agents are down."
|