fix: BUG-33 CPU threshold, TASK-27 tab icons, TASK-36 iframe errors
- BUG-33: CPU load alert threshold increased from 2x to 4x core count (8→16 on 4-core machine) to reduce false alerts during container ops - TASK-27: Launch buttons for new-tab apps now show external link icon (BTCPay, Grafana, PhotoPrism, Portainer, OnlyOffice, etc.) - TASK-36: Iframe error screen now distinguishes between X-Frame-Options blocked vs container not reachable, with appropriate messaging Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
e1b2ade7c6
commit
302f22019d
+2
-17
@@ -64,24 +64,9 @@ case $choice in
|
||||
lsof -ti:8100 | xargs kill -9 2>/dev/null || true
|
||||
sleep 1
|
||||
|
||||
# Start Docker containers first
|
||||
# Mock backend simulates apps — Docker containers optional
|
||||
echo ""
|
||||
echo " 🐳 Starting Docker containers..."
|
||||
if [ -f "$PROJECT_ROOT/start-docker-apps.sh" ]; then
|
||||
bash "$PROJECT_ROOT/start-docker-apps.sh"
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "❌ Failed to start Docker containers."
|
||||
echo " You can continue without Docker, but apps won't be available."
|
||||
read -p " Continue anyway? (y/N) " -n 1 -r
|
||||
echo ""
|
||||
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
else
|
||||
echo "⚠️ start-docker-apps.sh not found, skipping Docker startup."
|
||||
echo " Apps will not be available."
|
||||
fi
|
||||
echo " ℹ️ Mock backend will simulate apps (Docker containers optional)"
|
||||
|
||||
echo ""
|
||||
# Check if backend can build
|
||||
|
||||
Reference in New Issue
Block a user