From 00518a0340e25fcb46f39a62149240880f198506 Mon Sep 17 00:00:00 2001 From: AbdBarho Date: Tue, 24 Jan 2023 23:25:07 +0100 Subject: [PATCH] Add missing mkdir (#310) --- docker-compose.yml | 2 +- services/AUTOMATIC1111/entrypoint.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 6411e8c..2cf02c5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -27,7 +27,7 @@ services: <<: *base_service profiles: ["auto"] build: ./services/AUTOMATIC1111 - image: sd-auto:37 + image: sd-auto:38 environment: - CLI_ARGS=--allow-code --medvram --xformers --enable-insecure-extension-access --api diff --git a/services/AUTOMATIC1111/entrypoint.sh b/services/AUTOMATIC1111/entrypoint.sh index 4249ebf..e6df756 100755 --- a/services/AUTOMATIC1111/entrypoint.sh +++ b/services/AUTOMATIC1111/entrypoint.sh @@ -55,6 +55,7 @@ for to_path in "${!MOUNTS[@]}"; do done sync_bidirectional() { + mkdir -p /data/config/auto/extensions "${ROOT}/extensions" rsync -cau /data/config/auto/extensions/ "${ROOT}/extensions" rsync -cau "${ROOT}/extensions/" /data/config/auto/extensions }