File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ services:
36
36
<< : *base_service
37
37
profiles : ["auto"]
38
38
build : ./services/AUTOMATIC1111
39
- image : sd-auto:5
39
+ image : sd-auto:6
40
40
environment :
41
41
- CLI_ARGS=--allow-code --medvram --xformers
42
42
Original file line number Diff line number Diff line change 2
2
3
3
set -Eeuo pipefail
4
4
5
- mkdir -p /data/config/auto/
5
+ mkdir -p /data/config/auto/scripts/
6
6
cp -n /docker/config.json /data/config/auto/config.json
7
7
jq ' . * input' /data/config/auto/config.json /docker/config.json | sponge /data/config/auto/config.json
8
8
9
9
if [ ! -f /data/config/auto/ui-config.json ]; then
10
10
echo ' {}' > /data/config/auto/ui-config.json
11
11
fi
12
12
13
+ # copy scripts, we cannot just mount the directory because it will override the already provided scripts in the repo
14
+ cp -rfT /data/config/auto/scripts/ " ${ROOT} /scripts"
15
+
13
16
declare -A MOUNTS
14
17
15
18
MOUNTS[" /root/.cache" ]=" /data/.cache"
You can’t perform that action at this time.
0 commit comments