Major updates and improvements to BZZZ system

- Updated configuration and deployment files
- Improved system architecture and components
- Enhanced documentation and testing
- Fixed various issues and added new features

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
anthonyrawlins
2025-09-17 18:06:57 +10:00
parent 4e6140de03
commit f5f96ba505
71 changed files with 664 additions and 3823 deletions

View File

@@ -0,0 +1,29 @@
#!/bin/bash
set -e
# Build script for minimal BZZZ container
echo "🐳 Building minimal BZZZ container..."
# Set build context to parent directory (BZZZ root)
cd "$(dirname "$0")/.."
# Build the minimal container
docker build -f dockerize/Dockerfile.minimal -t bzzz:minimal .
echo "✅ BZZZ minimal container built successfully!"
echo ""
echo "Usage:"
echo " # Start with default configuration:"
echo " docker-compose -f dockerize/docker-compose.minimal.yml up -d"
echo ""
echo " # Start with custom environment:"
echo " cp dockerize/bzzz.minimal.env.example dockerize/bzzz.minimal.env"
echo " # Edit dockerize/bzzz.minimal.env with your settings"
echo " docker-compose -f dockerize/docker-compose.minimal.yml --env-file dockerize/bzzz.minimal.env up -d"
echo ""
echo " # Check logs:"
echo " docker-compose -f dockerize/docker-compose.minimal.yml logs -f"
echo ""
echo " # Check health:"
echo " curl http://localhost:8081/health"