ai-stack/CHEAT-SHEET.md
Print this page and keep it handy!
# Start
.\start.ps1
# Stop
.\start.ps1 -Stop
# Check Status
.\start.ps1 -Status
# View Logs
.\start.ps1 -Logs
# Start
./start.sh
# Stop
./start.sh --stop
# Check Status
./start.sh --status
# View Logs
./start.sh --logs
Copy these into your browser:
n8n: http://localhost:5678
Agent Zero: http://localhost:50080
ComfyUI: http://localhost:8188
ai-stack/
āāā data/n8n/ ā Your n8n workflows
āāā data/agent-zero/ ā Agent Zero data
āāā shared/
āāā comfyui/
āāā models/ ā Put AI models here
āāā output/ ā Generated images here
āāā input/ ā Input images here
POST http://localhost:8188/prompt
GET http://localhost:8188/history/{prompt_id}
GET http://localhost:8188/view?filename={name}&type=output
# See all running containers
docker ps
# Stop all containers
docker stop $(docker ps -q)
# Remove all containers
docker rm $(docker ps -aq)
# Clean up Docker
docker system prune -a
# Windows
curl http://localhost:5678/healthz
curl http://localhost:8188/system_stats
# Mac/Linux
curl http://localhost:5678/healthz
curl http://localhost:8188/system_stats
| Problem | Solution |
|---|---|
| Docker not running | Open Docker Desktop, wait for whale icon š³ |
| Port in use | Run stop command, then start again |
| Permission denied | Windows: Run as Admin |
Mac: chmod +x start.sh | |
| Can't connect | Wait 2 minutes, check Docker is running |
| Out of space | Delete old files, run docker system prune -a |
.safetensors or .ckpt)shared/comfyui/models/checkpoints/shared/comfyui/models/loras/shared/comfyui/models/vae/ā ļø This deletes everything and starts fresh!
.\start.ps1 -Stop
docker compose down -v
.\start.ps1
./start.sh --stop
docker compose down -v
./start.sh
Before starting, verify:
ai-stack folderdata/n8n/ ā Your workflows
shared/workflows/ ā Shared workflow files
.env ā Your settings
# Windows
xcopy /E /I data backup\data
xcopy /E /I shared backup\shared
# Mac/Linux
cp -r data backup/data
cp -r shared backup/shared
You know it's working when:
š You're all set! Happy automating!
Print this page and keep it near your computer for quick reference!