ComfyUI Worker: FLUX.1 dev & Network Volume Setup Questions

Few questions:

https://github.com/runpod-workers/worker-comfyui
runpod/worker-comfyui:<version>-flux1-dev: Includes checkpoint, text encoders, and VAE for FLUX.1 dev <---- This model is using the fp8 version right now and not the full version, is that right?

Thats why I want to now use this because I want to use the full size flux version:
https://github.com/runpod-workers/worker-comfyui/blob/main/docs/customization.md

I want to use network storage but I am not sure how i need to do it.

What i wanted to do was create pod temporarily where the network storage is attached to and then just upload the full flux model etc. into the /workspace directory with this strucutre that is described in the customization.md

Example structure inside the Network Volume:
/models/checkpoints/your_model.safetensors
/models/loras/your_lora.pt
/models/vae/your_vae.safetensors

But I think I need to use a symlink so it will work on server less later as well? Is that correct?

Since here it mentions /runpod-volume <--- https://docs.runpod.io/serverless/storage/network-volumes

So i am confused on what I need to do now

so would something like this be correct then?

# Start from the base image
FROM runpod/worker-comfyui:5.1.0-base

# Install required packages and custom nodes
RUN pip install huggingface-hub
RUN comfy-node-install https://github.com/olduvai-jp/ComfyUI-HfLoader

RUN rm -rf /workspace && \
    ln -s /runpod-volume /workspace


If not what would be the correct way to do it?
Was this page helpful?