We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello , Great work! just one question, how to add LoRa in Dockerfile ?
The text was updated successfully, but these errors were encountered:
Did you find a way to do it? @cmwang92 ?
Sorry, something went wrong.
I think I got LORA to work.
on download layer
RUN apk add --no-cache wget && \ - wget -q -O /model.safetensors https://civitai.com/api/download/models/15236 + wget -q -O /model.safetensors https://civitai.com/api/download/models/15236 && \ + wget -q -O /YOUR_LORA.safetensors https://your_site.com/YOUR_LORA.safetensors
on build_final_image layer
COPY --from=download /model.safetensors /model.safetensors +COPY --from=download /YOUR_LORA.safetensors /stable-diffusion-webui/models/Lora/
Does this way of adding lora work?
No branches or pull requests
Hello , Great work!
just one question, how to add LoRa in Dockerfile ?
The text was updated successfully, but these errors were encountered: