Update versions (#198)

- auto:
30b1bcc64e
- hlky:
6f6d7571ea
This commit is contained in:
AbdBarho 2022-11-05 09:51:30 +01:00 committed by GitHub
parent b33c0d4bcf
commit 73cd69075e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 5 deletions

View File

@ -27,7 +27,7 @@ services:
<<: *base_service <<: *base_service
profiles: ["auto"] profiles: ["auto"]
build: ./services/AUTOMATIC1111 build: ./services/AUTOMATIC1111
image: sd-auto:11 image: sd-auto:12
environment: environment:
- CLI_ARGS=--allow-code --medvram --xformers - CLI_ARGS=--allow-code --medvram --xformers
@ -42,7 +42,7 @@ services:
<<: *base_service <<: *base_service
profiles: ["hlky"] profiles: ["hlky"]
build: ./services/hlky/ build: ./services/hlky/
image: sd-hlky:6 image: sd-hlky:7
environment: environment:
- CLI_ARGS=--optimized-turbo - CLI_ARGS=--optimized-turbo
- USE_STREAMLIT=0 - USE_STREAMLIT=0

View File

@ -65,7 +65,7 @@ RUN [[ "${DEEPDANBOORU:-0}" == "0" ]] && : || pip install tensorflow-cpu==2.10 t
# Note: don't update the sha of previous versions because the install will take forever # Note: don't update the sha of previous versions because the install will take forever
# instead, update the repo state in a later step # instead, update the repo state in a later step
ARG SHA=cd5eafaf03a25d2b0e35154666947b9489078af9 ARG SHA=30b1bcc64e67ad50c5d3af3a6fe1bd1e9553f34e
RUN <<EOF RUN <<EOF
cd stable-diffusion-webui cd stable-diffusion-webui
git fetch git fetch

View File

@ -20,6 +20,7 @@ MOUNTS["/root/.cache"]="/data/.cache"
# main # main
MOUNTS["${ROOT}/models/Stable-diffusion"]="/data/StableDiffusion" MOUNTS["${ROOT}/models/Stable-diffusion"]="/data/StableDiffusion"
MOUNTS["${ROOT}/models/VAE"]="/data/VAE"
MOUNTS["${ROOT}/models/Codeformer"]="/data/Codeformer" MOUNTS["${ROOT}/models/Codeformer"]="/data/Codeformer"
MOUNTS["${ROOT}/models/GFPGAN"]="/data/GFPGAN" MOUNTS["${ROOT}/models/GFPGAN"]="/data/GFPGAN"
MOUNTS["${ROOT}/models/ESRGAN"]="/data/ESRGAN" MOUNTS["${ROOT}/models/ESRGAN"]="/data/ESRGAN"

View File

@ -2,7 +2,8 @@
set -Eeuo pipefail set -Eeuo pipefail
mkdir -p /data/.cache /data/StableDiffusion /data/Codeformer /data/GFPGAN /data/ESRGAN /data/BSRGAN /data/RealESRGAN /data/SwinIR /data/LDSR /data/ScuNET /data/embeddings # TODO: maybe just use the .gitignore file to create all of these
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
echo "Downloading, this might take a while..." echo "Downloading, this might take a while..."

View File

@ -25,7 +25,7 @@ EOF
RUN apt-get update && apt install libsndfile1 ffmpeg -y && apt-get clean RUN apt-get update && apt install libsndfile1 ffmpeg -y && apt-get clean
ARG BRANCH=dev SHA=62f9706d6abf52c7a0facbfddbc22f98e2b3fa85 ARG BRANCH=dev SHA=6f6d7571ea56809c1beaf11430ec36ab28e0884f
RUN <<EOF RUN <<EOF
cd stable-diffusion cd stable-diffusion
git fetch git fetch