mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2026-03-21 20:44:47 +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
|
/BSRGAN
|
||||||
/RealESRGAN
|
/RealESRGAN
|
||||||
/SwinIR
|
/SwinIR
|
||||||
|
/MiDaS
|
||||||
/ScuNET
|
/ScuNET
|
||||||
/LDSR
|
/LDSR
|
||||||
/Deepdanbooru
|
/Deepdanbooru
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ services:
|
||||||
<<: *base_service
|
<<: *base_service
|
||||||
profiles: ["auto"]
|
profiles: ["auto"]
|
||||||
build: ./services/AUTOMATIC1111
|
build: ./services/AUTOMATIC1111
|
||||||
image: sd-auto:21
|
image: sd-auto:22
|
||||||
environment:
|
environment:
|
||||||
- CLI_ARGS=--allow-code --medvram --xformers --enable-insecure-extension-access --api
|
- 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
|
# 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=44c46f0ed395967cd3830dd481a2db759fda5b3b
|
ARG SHA=685f9631b56ff8bd43bce24ff5ce0f9a0e9af490
|
||||||
RUN <<EOF
|
RUN <<EOF
|
||||||
cd stable-diffusion-webui
|
cd stable-diffusion-webui
|
||||||
git fetch
|
git fetch
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,7 @@ MOUNTS["${ROOT}/models/ScuNET"]="/data/ScuNET"
|
||||||
MOUNTS["${ROOT}/models/LDSR"]="/data/LDSR"
|
MOUNTS["${ROOT}/models/LDSR"]="/data/LDSR"
|
||||||
MOUNTS["${ROOT}/models/hypernetworks"]="/data/Hypernetworks"
|
MOUNTS["${ROOT}/models/hypernetworks"]="/data/Hypernetworks"
|
||||||
MOUNTS["${ROOT}/models/deepbooru"]="/data/Deepdanbooru"
|
MOUNTS["${ROOT}/models/deepbooru"]="/data/Deepdanbooru"
|
||||||
|
MOUNTS["${ROOT}/models/midas"]="/data/MiDaS"
|
||||||
|
|
||||||
MOUNTS["${ROOT}/embeddings"]="/data/embeddings"
|
MOUNTS["${ROOT}/embeddings"]="/data/embeddings"
|
||||||
MOUNTS["${ROOT}/config.json"]="/data/config/auto/config.json"
|
MOUNTS["${ROOT}/config.json"]="/data/config/auto/config.json"
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
set -Eeuo pipefail
|
set -Eeuo pipefail
|
||||||
|
|
||||||
# TODO: maybe just use the .gitignore file to create all of these
|
# 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..."
|
echo "Downloading, this might take a while..."
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue