mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2026-02-03 14:14:18 +01:00
auto
This commit is contained in:
parent
c3cf8129a9
commit
6748492b4f
1
data/.gitignore
vendored
1
data/.gitignore
vendored
|
|
@ -11,6 +11,7 @@
|
|||
/BSRGAN
|
||||
/RealESRGAN
|
||||
/SwinIR
|
||||
/MiDaS
|
||||
/ScuNET
|
||||
/LDSR
|
||||
/Deepdanbooru
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ services:
|
|||
<<: *base_service
|
||||
profiles: ["auto"]
|
||||
build: ./services/AUTOMATIC1111
|
||||
image: sd-auto:21
|
||||
image: sd-auto:22
|
||||
environment:
|
||||
- CLI_ARGS=--allow-code --medvram --xformers --enable-insecure-extension-access --api
|
||||
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ RUN pip install opencv-python-headless \
|
|||
# Note: don't update the sha of previous versions because the install will take forever
|
||||
# instead, update the repo state in a later step
|
||||
|
||||
ARG SHA=44c46f0ed395967cd3830dd481a2db759fda5b3b
|
||||
ARG SHA=685f9631b56ff8bd43bce24ff5ce0f9a0e9af490
|
||||
RUN <<EOF
|
||||
cd stable-diffusion-webui
|
||||
git fetch
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@ MOUNTS["${ROOT}/models/ScuNET"]="/data/ScuNET"
|
|||
MOUNTS["${ROOT}/models/LDSR"]="/data/LDSR"
|
||||
MOUNTS["${ROOT}/models/hypernetworks"]="/data/Hypernetworks"
|
||||
MOUNTS["${ROOT}/models/deepbooru"]="/data/Deepdanbooru"
|
||||
MOUNTS["${ROOT}/models/midas"]="/data/MiDaS"
|
||||
|
||||
MOUNTS["${ROOT}/embeddings"]="/data/embeddings"
|
||||
MOUNTS["${ROOT}/config.json"]="/data/config/auto/config.json"
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
set -Eeuo pipefail
|
||||
|
||||
# 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
|
||||
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 /data/MiDaS
|
||||
|
||||
echo "Downloading, this might take a while..."
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue