mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2026-03-21 04:24:51 +01:00
add mounts for openpose
This commit is contained in:
parent
063665eae1
commit
0c76cb8454
1
data/.gitignore
vendored
1
data/.gitignore
vendored
|
|
@ -20,3 +20,4 @@
|
||||||
/VAE
|
/VAE
|
||||||
/embeddings
|
/embeddings
|
||||||
/Lora
|
/Lora
|
||||||
|
/openpose
|
||||||
|
|
|
||||||
|
|
@ -35,6 +35,7 @@ MOUNTS["${ROOT}/models/torch_deepdanbooru"]="/data/Deepdanbooru"
|
||||||
MOUNTS["${ROOT}/models/BLIP"]="/data/BLIP"
|
MOUNTS["${ROOT}/models/BLIP"]="/data/BLIP"
|
||||||
MOUNTS["${ROOT}/models/midas"]="/data/MiDaS"
|
MOUNTS["${ROOT}/models/midas"]="/data/MiDaS"
|
||||||
MOUNTS["${ROOT}/models/Lora"]="/data/Lora"
|
MOUNTS["${ROOT}/models/Lora"]="/data/Lora"
|
||||||
|
MOUNTS["${ROOT}/models/openpose"]="/data/openpose"
|
||||||
|
|
||||||
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 /data/MiDaS /data/Lora
|
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 /data/Lora /data/openpose
|
||||||
|
|
||||||
echo "Downloading, this might take a while..."
|
echo "Downloading, this might take a while..."
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue