diff --git a/Dockerfile b/Dockerfile index f0aaa55..048add7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -131,9 +131,11 @@ RUN git clone https://github.com/d8ahazard/sd_dreambooth_extension.git extension # Install dependencies for Deforum, ControlNet, ReActor, Infinite Image Browsing, # After Detailer, and CivitAI Browser+ extensions +ARG CONTROLNET_COMMIT RUN source /venv/bin/activate && \ pip3 install basicsr && \ cd /stable-diffusion-webui/extensions/sd-webui-controlnet && \ + git checkout ${CONTROLNET_COMMIT} && \ pip3 install -r requirements.txt && \ cd /stable-diffusion-webui/extensions/deforum && \ pip3 install -r requirements.txt && \ diff --git a/README.md b/README.md index a8d25a5..7b98a06 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Now with SDXL support. * [Dreambooth extension]( https://github.com/d8ahazard/sd_dreambooth_extension) 1.0.14 * [ControlNet extension]( - https://github.com/Mikubill/sd-webui-controlnet) v1.1.441 + https://github.com/Mikubill/sd-webui-controlnet) v1.1.442 * [After Detailer extension]( https://github.com/Bing-su/adetailer) v24.3.0 * [Locon extension]( diff --git a/docker-bake.hcl b/docker-bake.hcl index f199b6b..8370208 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -7,7 +7,7 @@ variable "APP" { } variable "RELEASE" { - default = "4.2.9" + default = "4.2.10" } variable "CU_VERSION" { @@ -23,6 +23,7 @@ target "default" { TORCH_VERSION = "2.1.2+cu${CU_VERSION}" XFORMERS_VERSION = "0.0.23.post1+cu${CU_VERSION}" WEBUI_VERSION = "v1.8.0" + CONTROLNET_COMMIT = "0b90426254debf78bfc09d88c064d2caf0935282" DREAMBOOTH_COMMIT = "30bfbc289a1d90153a3e5a5ab92bf5636e66b210" KOHYA_VERSION = "v23.0.15" RUNPODCTL_VERSION = "v1.14.2"