fleet-memory/docker/rebuild.sh
Nicolò Boschi 3e72984cd2 chunks
2025-11-29 16:34:13 +01:00

16 lines
322 B
Bash
Executable file

#!/bin/bash
# Rebuild Hindsight images from scratch
cd "$(dirname "$0")/standalone"
echo "🔨 Rebuilding Hindsight images (no cache)..."
echo ""
# Build with no cache to force complete rebuild
docker-compose build --no-cache
echo ""
echo "✅ Rebuild complete!"
echo ""
echo "To start Hindsight:"
echo " ./start.sh"