15fc70663f
New features: - ComfyUIMini container (Node.js Alpine, ~150MB) for mobile/tablet access - Separate container architecture with shared Docker network - Health checks on both services with proper dependency ordering - Shared output volume for image gallery feature Files added: - comfyuimini/Dockerfile - Node.js 20 Alpine with tsx runtime - comfyuimini/.dockerignore - Build context filtering Files updated: - docker-compose.yml - Added comfyuimini service, network, health checks - .env.example - Added COMFYUIMINI_PORT and COMFYUIMINI_REF - README.md - Architecture diagram, ComfyUIMini docs, updated credits Access points: - ComfyUI (Desktop): http://<host>:8188 - ComfyUIMini (Mobile): http://<host>:3000 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
28 lines
1.0 KiB
Bash
28 lines
1.0 KiB
Bash
# SparkyUI - ComfyUI for DGX Spark (Blackwell GB10)
|
|
# Copy this to .env and customize paths as needed
|
|
|
|
# Base path where your existing ComfyUI installation lives (for models)
|
|
COMFYUI_HOST_PATH=/path/to/your/ComfyUI
|
|
|
|
# Base path for SparkyUI data (custom_nodes, outputs, inputs, etc.)
|
|
SPARKYUI_DATA_PATH=/path/to/SparkyUI
|
|
|
|
# ComfyUI settings
|
|
COMFYUI_PORT=8188
|
|
|
|
# Optimized flags for Grace-Blackwell unified memory architecture
|
|
# Key: DON'T use --gpu-only - it fights the unified memory fabric
|
|
# --disable-pinned-memory: reduces overhead on unified fabric
|
|
# --force-fp16 + --fp16-*: enables SageAttention optimization
|
|
# --dont-upcast-attention: keeps attention in FP16 for speed
|
|
COMFYUI_FLAGS=--listen 0.0.0.0 --port 8188 --disable-pinned-memory --force-fp16 --fp16-unet --fp16-vae --fp16-text-enc --dont-upcast-attention
|
|
|
|
# Build refs (pin to specific commits/tags for reproducibility)
|
|
COMFYUI_REF=master
|
|
SAGEATTN_REF=main
|
|
|
|
# ComfyUIMini - Mobile-friendly UI (optional)
|
|
# Access at http://<host>:3000
|
|
COMFYUIMINI_PORT=3000
|
|
COMFYUIMINI_REF=main
|