Scripts support (#187)

Closes #186
pull/176/head
AbdBarho 2 years ago committed by GitHub
parent 4464e9d9e9
commit d6cbafdca8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -36,7 +36,7 @@ services:
<<: *base_service
profiles: ["auto"]
build: ./services/AUTOMATIC1111
image: sd-auto:5
image: sd-auto:6
environment:
- CLI_ARGS=--allow-code --medvram --xformers

@ -2,7 +2,7 @@
set -Eeuo pipefail
mkdir -p /data/config/auto/
mkdir -p /data/config/auto/scripts/
cp -n /docker/config.json /data/config/auto/config.json
jq '. * input' /data/config/auto/config.json /docker/config.json | sponge /data/config/auto/config.json
@ -10,6 +10,9 @@ if [ ! -f /data/config/auto/ui-config.json ]; then
echo '{}' >/data/config/auto/ui-config.json
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"
declare -A MOUNTS
MOUNTS["/root/.cache"]="/data/.cache"

Loading…
Cancel
Save