mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2026-02-04 14:44:19 +01:00
hlky (still very buggy)
This commit is contained in:
parent
74f2ee5563
commit
56c69891c3
|
|
@ -27,6 +27,7 @@ services:
|
||||||
<<: *base_service
|
<<: *base_service
|
||||||
profiles: ["hlky"]
|
profiles: ["hlky"]
|
||||||
build: ./services/hlky/
|
build: ./services/hlky/
|
||||||
|
image: sd-hlky:1
|
||||||
environment:
|
environment:
|
||||||
- CLI_ARGS=--optimized-turbo
|
- CLI_ARGS=--optimized-turbo
|
||||||
- USE_STREAMLIT=0
|
- USE_STREAMLIT=0
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ conda clean -a -y
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
||||||
ARG BRANCH=dev SHA=bd57d22f2e0ec7eed084bdf2a4c0dcc0ed745daf
|
ARG BRANCH=dev SHA=8d1e42b9c50c747d056b0a98f3c2eb7652fb73a7
|
||||||
RUN <<EOF
|
RUN <<EOF
|
||||||
cd stable-diffusion
|
cd stable-diffusion
|
||||||
git fetch
|
git fetch
|
||||||
|
|
|
||||||
|
|
@ -6,5 +6,5 @@ echo "USE_STREAMLIT = ${USE_STREAMLIT}"
|
||||||
if [ "${USE_STREAMLIT}" == "1" ]; then
|
if [ "${USE_STREAMLIT}" == "1" ]; then
|
||||||
python -u -m streamlit run scripts/webui_streamlit.py
|
python -u -m streamlit run scripts/webui_streamlit.py
|
||||||
else
|
else
|
||||||
python3 -u scripts/webui.py --outdir /output --ckpt /data/StableDiffusion/model.ckpt ${CLI_ARGS}
|
python3 -u scripts/webui.py --outdir /output --ckpt /data/StableDiffusion/v1-5-pruned-emaonly.ckpt ${CLI_ARGS}
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
general:
|
general:
|
||||||
outdir: /outputs
|
version: 1.20.0
|
||||||
default_model: "Stable Diffusion v1.4"
|
outdir: /output
|
||||||
default_model_path: /data/StableDiffusion/model.ckpt
|
default_model: "Stable Diffusion v1.5"
|
||||||
outdir_txt2img: /outputs/txt2img-samples
|
default_model_path: /data/StableDiffusion/v1-5-pruned-emaonly.ckpt
|
||||||
outdir_img2img: /outputs/img2img-samples
|
outdir_txt2img: /output/txt2img-samples
|
||||||
optimized: True
|
outdir_img2img: /output/img2img-samples
|
||||||
|
outdir_img2txt: /output/img2txt
|
||||||
optimized_turbo: True
|
optimized_turbo: True
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue