- 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>
29 lines
945 B
Bash
Executable File
29 lines
945 B
Bash
Executable File
#!/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" |