mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2025-11-15 16:32:37 -05:00
Update versions (#146)
- auto:36a0ba357a- History tab should be working, closes #138 - hlky:bd57d22f2e- experimental support for the streamlit UI, use the env var `USE_STREAMLIT`, see the `docker-compose.yml` file, closes #105 - Don't create issues if it fails, it is still very early in dev.
This commit is contained in:
10
services/hlky/run.sh
Executable file
10
services/hlky/run.sh
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -Eeuo pipefail
|
||||
|
||||
echo "USE_STREAMLIT = ${USE_STREAMLIT}"
|
||||
if [ "${USE_STREAMLIT}" == "1" ]; then
|
||||
python -u -m streamlit run scripts/webui_streamlit.py
|
||||
else
|
||||
python3 -u scripts/webui.py --outdir /output --ckpt /data/StableDiffusion/model.ckpt ${CLI_ARGS}
|
||||
fi
|
||||
Reference in New Issue
Block a user