File tree Expand file tree Collapse file tree 5 files changed +7
-5
lines changed
Expand file tree Collapse file tree 5 files changed +7
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
6969RUN <<EOF
7070cd stable-diffusion-webui
7171git fetch
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ MOUNTS["/root/.cache"]="/data/.cache"
2020
2121# main
2222MOUNTS[" ${ROOT} /models/Stable-diffusion" ]=" /data/StableDiffusion"
23+ MOUNTS[" ${ROOT} /models/VAE" ]=" /data/VAE"
2324MOUNTS[" ${ROOT} /models/Codeformer" ]=" /data/Codeformer"
2425MOUNTS[" ${ROOT} /models/GFPGAN" ]=" /data/GFPGAN"
2526MOUNTS[" ${ROOT} /models/ESRGAN" ]=" /data/ESRGAN"
Original file line number Diff line number Diff line change 22
33set -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
78echo " Downloading, this might take a while..."
89
Original file line number Diff line number Diff line change 2525
2626RUN apt-get update && apt install libsndfile1 ffmpeg -y && apt-get clean
2727
28- ARG BRANCH=dev SHA=62f9706d6abf52c7a0facbfddbc22f98e2b3fa85
28+ ARG BRANCH=dev SHA=6f6d7571ea56809c1beaf11430ec36ab28e0884f
2929RUN <<EOF
3030cd stable-diffusion
3131git fetch
You can’t perform that action at this time.
0 commit comments