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:
29
deployments/dockerized-BZZZ/build-minimal.sh
Executable file
29
deployments/dockerized-BZZZ/build-minimal.sh
Executable 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"
|
||||
Reference in New Issue
Block a user