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