ljleb
ljleb
I tried with the debian and ubuntu images, and now the file system is mounted as rw in each case! My first approach was the right one: ```sh echo -e...
I found a workaround for alpine! I simply created a script `remount.start` to be ran by the `local` service of openRC: ```sh #!bin/sh mount -o remount,rw / ``` Then I...
> Yeah, that's what I suspect in #17 too. Actually, I was wrong. What was happening was alpine didn't want to use the configuration in `/etc/fstab` for some reason when...
I finally discovered why the root file system is not getting remounted as read-write upon booting. OpenRC init scripts are located under `/etc/init.d`. The service responsible for remounting the root...
I found that installing the `udev` package removes the warnings about 'dev' being not found, even though the file system stays in read-only and still has to be remounted manually.
Thanks for the help @Adphi, I want to test your proposed fix. I'll try to come back to this thread when I find some free time.
While working on the batch PR I believe I stumbled on this. One thing that seems to trigger it right now is swapping controlnet models, i.e. replace model 0 settings...
That's how the `/controlnet/*2img` API routes are currently implemented to convert requests into controlnet settings at the moment. You can use the `p.control_net_image`, `p.control_net_module`, etc. properties and the extension should...
The code that handles other extensions feeding data into `p` instead of using the extension args is here: https://github.com/Mikubill/sd-webui-controlnet/blob/e67ee2730457867f78cdbffd6361626abfed30e8/scripts/controlnet.py#L544-L546 So my assumption is that you can either set properties on...
actually I'll reopen this. I think we should close this when the api for external code is clarified / updated.