mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2026-02-03 14:14:18 +01:00
Update entrypoint.sh
Added an additional copy step to prevent issues with certain extensions. Tested with Dreambooth
This commit is contained in:
parent
53ac3601d7
commit
a0dd766fc5
|
|
@ -13,6 +13,8 @@ fi
|
|||
|
||||
# copy scripts, we cannot just mount the directory because it will override the already provided scripts in the repo
|
||||
cp -rfT /data/config/auto/scripts/ "${ROOT}/scripts"
|
||||
# Copy extensions as well to prevent issues with Dreambooth and the like, dependencies still need handled normally.
|
||||
cp -rfT /data/config/auto/extensions/ "${ROOT}/extensions"
|
||||
|
||||
declare -A MOUNTS
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue