mirror of
https://github.com/sd-webui/stable-diffusion-webui.git
synced 2024-12-15 23:31:59 +03:00
d28d07cd0b
* Cleaned up Docker documentation and process * Added back `build` section to Dockerfile so we don't have to manually build it separately, simplifying the quick-start process * Added a healthcheck to make it easier to see when the container was done initializing. Currently a little ugly since it has to check both URLs for liveness * Removed CONDA_FORCE_UPDATE from env file since we don't user conda anymore Note - `build_docker.sh` is seemingly obsolete but I left it for now with a comment in case it's ingrained in somebody else's workflow. * Minor readme fixes
15 lines
438 B
Plaintext
15 lines
438 B
Plaintext
# Validate the model files on every container restart
|
|
# (useful to set to false after you're sure the model files are already in place)
|
|
VALIDATE_MODELS=true
|
|
|
|
# Automatically relaunch the webui on crashes
|
|
WEBUI_RELAUNCH=true
|
|
|
|
# Which webui to launch
|
|
# WEBUI_SCRIPT=webui_streamlit.py
|
|
WEBUI_SCRIPT=webui.py
|
|
|
|
# Pass cli arguments to webui.py e.g:
|
|
# WEBUI_ARGS=--optimized --extra-models-cpu --gpu=1 --esrgan-gpu=1 --gfpgan-gpu=1
|
|
WEBUI_ARGS=
|