From db831ece65ccf6aafb5b75dca7b1d267f0501d0b Mon Sep 17 00:00:00 2001 From: AbdBarho Date: Sat, 7 Jan 2023 18:58:50 +0100 Subject: [PATCH] Bump versions (#286) - auto: https://github.com/AUTOMATIC1111/stable-diffusion-webui/commit/151233399c4b79934bdbb7c12a97eeb6499572fb - invoke: https://github.com/invoke-ai/InvokeAI/commit/26e413ae9cf8dc04c617ca451a91a1624bfdf0c0 --- docker-compose.yml | 22 +++++++++++----------- services/AUTOMATIC1111/Dockerfile | 2 +- services/invoke/Dockerfile | 2 +- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index a35bf4b..45e0d17 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -27,7 +27,7 @@ services: <<: *base_service profiles: ["auto"] build: ./services/AUTOMATIC1111 - image: sd-auto:29 + image: sd-auto:30 environment: - CLI_ARGS=--allow-code --medvram --xformers --enable-insecure-extension-access --api @@ -38,6 +38,16 @@ services: environment: - CLI_ARGS=--no-half --precision full + invoke: + <<: *base_service + profiles: ["invoke"] + build: ./services/invoke/ + image: sd-invoke:17 + environment: + - PRELOAD=true + - CLI_ARGS= + + sygil: &sygil <<: *base_service profiles: ["sygil"] @@ -52,13 +62,3 @@ services: profiles: ["sygil-sl"] environment: - USE_STREAMLIT=1 - - - invoke: - <<: *base_service - profiles: ["invoke"] - build: ./services/invoke/ - image: sd-invoke:16 - environment: - - PRELOAD=true - - CLI_ARGS= diff --git a/services/AUTOMATIC1111/Dockerfile b/services/AUTOMATIC1111/Dockerfile index 6471d03..8c65fd4 100644 --- a/services/AUTOMATIC1111/Dockerfile +++ b/services/AUTOMATIC1111/Dockerfile @@ -68,7 +68,7 @@ RUN --mount=type=cache,target=/root/.cache/pip \ # Note: don't update the sha of previous versions because the install will take forever # instead, update the repo state in a later step -ARG SHA=683287d87f6401083a8d63eedc00ca7410214ca1 +ARG SHA=151233399c4b79934bdbb7c12a97eeb6499572fb RUN --mount=type=cache,target=/root/.cache/pip <