-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
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
enable ControlNet mounts for AUTOMATIC1111 #385
Conversation
could you please also add the folder to
TBH this huge list is not the nicest solution, maybe we should find something better. |
I added the folder to download.sh. Why not mount the folders directly into models in docker-compose? volumes:
- "./data:/stable-diffusion-webui/models" Then we wouldn't have to create those symlinks, or am I missing something here? |
The folder contains stuff other than models, the entire structure of the Also what you mentioned, there are other apps that need these folders. I will give this a one final test when I am back home and merge if everything is ok. |
Yes, I see. |
Have you had time to try it out? |
Upon enabling the ControlNet addon from #385 one might want to use the `openpose` preprocessors. Those are downloaded by the addon the first time they are used. Without proper mounts those networks will be downloaded on usage after each container start. This PR enables those mounts to reduce data traffic.
The ControlNet addon [sd-webui-controlnet](https://github.com/Mikubill/sd-webui-controlnet) requires the `data/ControlNet` folder to be mounted into `models/ControlNet`. This PR enables said mount and adds the ControlNet folder to `.gitignore` file. --------- Co-authored-by: AbdBarho <[email protected]>
Upon enabling the ControlNet addon from AbdBarho#385 one might want to use the `openpose` preprocessors. Those are downloaded by the addon the first time they are used. Without proper mounts those networks will be downloaded on usage after each container start. This PR enables those mounts to reduce data traffic.
The ControlNet addon [sd-webui-controlnet](https://github.com/Mikubill/sd-webui-controlnet) requires the `data/ControlNet` folder to be mounted into `models/ControlNet`. This PR enables said mount and adds the ControlNet folder to `.gitignore` file. --------- Co-authored-by: AbdBarho <[email protected]>
Upon enabling the ControlNet addon from AbdBarho#385 one might want to use the `openpose` preprocessors. Those are downloaded by the addon the first time they are used. Without proper mounts those networks will be downloaded on usage after each container start. This PR enables those mounts to reduce data traffic.
The ControlNet addon sd-webui-controlnet requires the
data/ControlNet
folder to be mounted intomodels/ControlNet
.This PR enables said mount and adds the ControlNet folder to
.gitignore
file.