From ce5fa6909332a2aacf513f3e84eb00787e1b126f Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 25 May 2025 09:53:02 -0700 Subject: [PATCH] renamed extra_model_paths.yml to .yaml extension which is what comfyui expects. --- official-templates/stable-diffusion-comfyui/Dockerfile | 2 +- official-templates/stable-diffusion-comfyui/README.md | 2 +- .../{extra_model_paths.yml => extra_model_paths.yaml} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename official-templates/stable-diffusion-comfyui/{extra_model_paths.yml => extra_model_paths.yaml} (100%) diff --git a/official-templates/stable-diffusion-comfyui/Dockerfile b/official-templates/stable-diffusion-comfyui/Dockerfile index ca10f03..a7004b1 100644 --- a/official-templates/stable-diffusion-comfyui/Dockerfile +++ b/official-templates/stable-diffusion-comfyui/Dockerfile @@ -33,7 +33,7 @@ RUN mkdir -p /ComfyUI/user # Copy the README.md, extra_model_paths.yml and start script COPY README.md /usr/share/nginx/html/README.md -COPY extra_model_paths.yml /ComfyUI/extra_model_paths.yml +COPY extra_model_paths.yaml /ComfyUI/extra_model_paths.yaml COPY --chmod=755 pre_start.sh /pre_start.sh CMD [ "/start.sh" ] \ No newline at end of file diff --git a/official-templates/stable-diffusion-comfyui/README.md b/official-templates/stable-diffusion-comfyui/README.md index 27c0cdd..873716e 100644 --- a/official-templates/stable-diffusion-comfyui/README.md +++ b/official-templates/stable-diffusion-comfyui/README.md @@ -23,7 +23,7 @@ You can add your own models by placing them in the appropriate directories under - CLIP: `/workspace/comfyui/models/clip/` - CLIP Vision: `/workspace/comfyui/models/clip_vision/` -These paths are configured in ComfyUI's `extra_model_paths.yml` file, so models placed in these directories will be automatically detected by ComfyUI. +These paths are configured in ComfyUI's `extra_model_paths.yaml` file, so models placed in these directories will be automatically detected by ComfyUI. > **Note:** data stored in `/workspace/comfyui` will be deleted when the Pod is deleted, unless you're using a [network volume](https://docs.runpod.io/pods/storage/create-network-volumes). diff --git a/official-templates/stable-diffusion-comfyui/extra_model_paths.yml b/official-templates/stable-diffusion-comfyui/extra_model_paths.yaml similarity index 100% rename from official-templates/stable-diffusion-comfyui/extra_model_paths.yml rename to official-templates/stable-diffusion-comfyui/extra_model_paths.yaml