File size: 259 Bytes
cef4e12 | 1 2 3 4 5 6 7 | #!/bin/bash
# Free the ComfyUI port if something's already on it, then start ComfyUI
# in the foreground on 7865 with the manager enabled.
kill $(lsof -t -i :7865) 2>/dev/null
cd /workspace/ComfyUI
python main.py --listen 0.0.0.0 --port 7865 --enable-manager
|