From 046ba3c383bef35b3b5cf5763870bbc5a67e530c Mon Sep 17 00:00:00 2001 From: John Doe Date: Thu, 27 Nov 2025 13:56:07 -0500 Subject: [PATCH] adding ComfyUI Easy Use as preisntalled pakcage for use with image_qwen_image.json --- comfyui-build/docker-entrypoint.sh | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/comfyui-build/docker-entrypoint.sh b/comfyui-build/docker-entrypoint.sh index 6690590..ddbb721 100644 --- a/comfyui-build/docker-entrypoint.sh +++ b/comfyui-build/docker-entrypoint.sh @@ -118,12 +118,23 @@ cd custom_nodes echo "Installing ComfyUI Manager..." if [ ! -d "comfyui-manager" ]; then - git clone https://github.com/ltdrdata/ComfyUI-Manager comfyui-manager + git clone https://github.com/ltdrdata/ComfyUI-Manager.git comfyui-manager + echo "Installing ComfyUI Manager requirements..." cd comfyui-manager && pip install -r requirements.txt && cd .. else echo "ComfyUI Manager already exists, skipping..." fi -echo "Installing ComfyUI Manager requirements..." + + +echo "Installing ComfyUI Manager..." +if [ ! -d "ComfyUI-Easy-Use" ]; then + git clone https://github.com/yolain/ComfyUI-Easy-Use.git ComfyUI-Easy-Use + echo "Installing ComfyUI Easy Use requirements..." + cd ComfyUI-Easy-Use && echo "" | bash ./install.sh && cd .. +else + echo "ComfyUI-Easy-Use already exists, skipping..." +fi + echo "Installing ComfyUI Multi-GPU Support..."