Skip to content

Commit 73cd690

Browse files
authored
1 parent b33c0d4 commit 73cd690

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ services:
2727
<<: *base_service
2828
profiles: ["auto"]
2929
build: ./services/AUTOMATIC1111
30-
image: sd-auto:11
30+
image: sd-auto:12
3131
environment:
3232
- CLI_ARGS=--allow-code --medvram --xformers
3333

@@ -42,7 +42,7 @@ services:
4242
<<: *base_service
4343
profiles: ["hlky"]
4444
build: ./services/hlky/
45-
image: sd-hlky:6
45+
image: sd-hlky:7
4646
environment:
4747
- CLI_ARGS=--optimized-turbo
4848
- USE_STREAMLIT=0

services/AUTOMATIC1111/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ RUN [[ "${DEEPDANBOORU:-0}" == "0" ]] && : || pip install tensorflow-cpu==2.10 t
6565
# Note: don't update the sha of previous versions because the install will take forever
6666
# instead, update the repo state in a later step
6767

68-
ARG SHA=cd5eafaf03a25d2b0e35154666947b9489078af9
68+
ARG SHA=30b1bcc64e67ad50c5d3af3a6fe1bd1e9553f34e
6969
RUN <<EOF
7070
cd stable-diffusion-webui
7171
git fetch

services/AUTOMATIC1111/entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ MOUNTS["/root/.cache"]="/data/.cache"
2020

2121
# main
2222
MOUNTS["${ROOT}/models/Stable-diffusion"]="/data/StableDiffusion"
23+
MOUNTS["${ROOT}/models/VAE"]="/data/VAE"
2324
MOUNTS["${ROOT}/models/Codeformer"]="/data/Codeformer"
2425
MOUNTS["${ROOT}/models/GFPGAN"]="/data/GFPGAN"
2526
MOUNTS["${ROOT}/models/ESRGAN"]="/data/ESRGAN"

services/download/download.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
set -Eeuo pipefail
44

5-
mkdir -p /data/.cache /data/StableDiffusion /data/Codeformer /data/GFPGAN /data/ESRGAN /data/BSRGAN /data/RealESRGAN /data/SwinIR /data/LDSR /data/ScuNET /data/embeddings
5+
# TODO: maybe just use the .gitignore file to create all of these
6+
mkdir -vp /data/.cache /data/StableDiffusion /data/Codeformer /data/GFPGAN /data/ESRGAN /data/BSRGAN /data/RealESRGAN /data/SwinIR /data/LDSR /data/ScuNET /data/embeddings /data/VAE /data/Deepdanbooru
67

78
echo "Downloading, this might take a while..."
89

services/hlky/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ EOF
2525

2626
RUN apt-get update && apt install libsndfile1 ffmpeg -y && apt-get clean
2727

28-
ARG BRANCH=dev SHA=62f9706d6abf52c7a0facbfddbc22f98e2b3fa85
28+
ARG BRANCH=dev SHA=6f6d7571ea56809c1beaf11430ec36ab28e0884f
2929
RUN <<EOF
3030
cd stable-diffusion
3131
git fetch

0 commit comments

Comments
 (0)