Skip to content

Commit 9e7979b

Browse files
authored
1 parent 8623c73 commit 9e7979b

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ services:
2727
<<: *base_service
2828
profiles: ["auto"]
2929
build: ./services/AUTOMATIC1111
30-
image: sd-auto:16
30+
image: sd-auto:17
3131
environment:
3232
- CLI_ARGS=--allow-code --medvram --xformers
3333

@@ -42,7 +42,7 @@ services:
4242
<<: *base_service
4343
profiles: ["hlky"]
4444
build: ./services/hlky/
45-
image: sd-hlky:8
45+
image: sd-hlky:9
4646
environment:
4747
- CLI_ARGS=--optimized-turbo
4848
- USE_STREAMLIT=0

services/AUTOMATIC1111/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ RUN pip install opencv-python-headless \
7070
# Note: don't update the sha of previous versions because the install will take forever
7171
# instead, update the repo state in a later step
7272

73-
ARG SHA=98947d173e3f1667eba29c904f681047dea9de90
73+
ARG SHA=47a44c7e421b98ca07e92dbf88769b04c9e28f86
7474
RUN <<EOF
7575
cd stable-diffusion-webui
7676
git fetch
@@ -88,9 +88,9 @@ mv ${ROOT}/style.css ${ROOT}/user.css
8888
sed -i 's/os.rename(tmpdir, target_dir)/shutil.move(tmpdir,target_dir)/' ${ROOT}/modules/ui_extensions.py
8989
EOF
9090

91-
WORKDIR ${ROOT}/repositories/stable-diffusion
91+
WORKDIR ${ROOT}
9292
ENV CLI_ARGS=""
9393
EXPOSE 7860
9494
ENTRYPOINT ["/docker/entrypoint.sh"]
9595
# run, -u to not buffer stdout / stderr
96-
CMD python3 -u ../../webui.py --listen --port 7860 --ckpt-dir ${ROOT}/models/Stable-diffusion ${CLI_ARGS}
96+
CMD python3 -u webui.py --listen --port 7860 ${CLI_ARGS}

services/hlky/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ EOF
2525

2626
RUN apt-get update && apt install libsndfile1 ffmpeg -y && apt-get clean
2727

28-
ARG BRANCH=master SHA=09b64d4f759c44c7c6bc4d433ddd8e964d48b854
28+
ARG BRANCH=dev SHA=269107a104fc9fee3201eb2c56cf7adb3d063e4b
2929
RUN <<EOF
3030
cd stable-diffusion
3131
git fetch

services/hlky/userconfig_streamlit.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ general:
66
outdir_txt2img: /output/txt2img-samples
77
outdir_img2img: /output/img2img-samples
88
outdir_img2txt: /output/img2txt
9+
optimized: True
910
optimized_turbo: True

0 commit comments

Comments
 (0)