diff --git a/services/comfy/entrypoint.sh b/services/comfy/entrypoint.sh index b4299a7..9a8161b 100755 --- a/services/comfy/entrypoint.sh +++ b/services/comfy/entrypoint.sh @@ -9,6 +9,15 @@ declare -A MOUNTS MOUNTS["/root/.cache"]="/data/.cache" MOUNTS["${ROOT}/input"]="/data/config/comfy/input" MOUNTS["${ROOT}/output"]="/output/comfy" +MOUNTS["${ROOT}/custom_nodes"]="/data/config/comfy/custom_nodes" +MOUNTS["${ROOT}/models/checkpoints"]="/data/models/Stable-diffusion" +MOUNTS["${ROOT}/models/configs"]="/data/models/Stable-diffusion" +MOUNTS["${ROOT}/models/vae"]="/data/models/VAE" +MOUNTS["${ROOT}/models/loras"]="/data/models/Lora" +MOUNTS["${ROOT}/models/controlnet"]="/data/models/ControlNet" +MOUNTS["${ROOT}/models/hypernetworks"]="/data/models/hypernetworks" +MOUNTS["${ROOT}/models/gligen"]="/data/models/GLIGEN" +MOUNTS["${ROOT}/models/clip"]="/data/models/CLIPEncoder" for to_path in "${!MOUNTS[@]}"; do set -Eeuo pipefail