Some checks failed
Build and Deploy Docs / build-and-deploy (push) Has been cancelled
- Created logs/ structure (sessions, operations, incidents) - Added session-start/log/end scripts - Installed Git hooks for auto-logging commits/pushes - Added shell integration for zsh - Created CHANGELOG.md - Documented today's session (2026-01-10)
31 lines
319 B
Bash
Executable File
31 lines
319 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"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|