From a8c85b4699a3f0d35ac0f8b09f2e4ccd38e1a9aa Mon Sep 17 00:00:00 2001 From: AbdBarho Date: Wed, 21 Sep 2022 19:10:27 +0200 Subject: [PATCH] Update versions (#86) - auto: https://github.com/AUTOMATIC1111/stable-diffusion-webui/commit/5a1951f17567022612aef5302fb650923a06fb54 - Now with LDSR support - hlky: https://github.com/sd-webui/stable-diffusion-webui/commit/fa6a31b23c38b41541ed9af19201e6f8355ac165 - lstein: prepare for new UI Closes #85 --- docker-compose.yml | 2 +- services/AUTOMATIC1111/Dockerfile | 13 ++++++++----- services/AUTOMATIC1111/config.json | 11 ++++++++++- services/AUTOMATIC1111/mount.sh | 3 +++ services/hlky/Dockerfile | 8 +++----- services/lstein/Dockerfile | 10 ++++++---- 6 files changed, 31 insertions(+), 16 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 6439577..7a355e3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -39,7 +39,7 @@ services: - *v2 - ./services/AUTOMATIC1111/config.json:/stable-diffusion-webui/config.json environment: - - CLI_ARGS=--medvram + - CLI_ARGS=--allow-code --medvram automatic1111-cpu: <<: *automatic diff --git a/services/AUTOMATIC1111/Dockerfile b/services/AUTOMATIC1111/Dockerfile index e3aae1a..1c5c6d9 100644 --- a/services/AUTOMATIC1111/Dockerfile +++ b/services/AUTOMATIC1111/Dockerfile @@ -3,14 +3,17 @@ FROM alpine/git:2.36.2 as download -RUN git clone --depth 1 https://github.com/CompVis/stable-diffusion.git repositories/stable-diffusion -RUN git clone --depth 1 https://github.com/sczhou/CodeFormer.git repositories/CodeFormer -RUN git clone --depth 1 https://github.com/salesforce/BLIP.git repositories/BLIP +RUN git clone https://github.com/CompVis/stable-diffusion.git repositories/stable-diffusion && cd repositories/stable-diffusion && git reset --hard 69ae4b35e0a0f6ee1af8bb9a5d0016ccb27e36dc + +RUN git clone https://github.com/sczhou/CodeFormer.git repositories/CodeFormer && cd repositories/CodeFormer && git reset --hard c5b4593074ba6214284d6acd5f1719b6c5d739af +RUN git clone https://github.com/salesforce/BLIP.git repositories/BLIP && cd repositories/BLIP && git reset --hard 48211a1594f1321b00f14c9f7a5b4813144b2fb9 +RUN git clone https://github.com/Hafiidz/latent-diffusion.git repositories/latent-diffusion && cd repositories/latent-diffusion && git reset --hard abf33e7002d59d9085081bce93ec798dcabd49af RUN <