Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion a1111/webui-user.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ install_dir="/workspace"
#clone_dir="stable-diffusion-webui"

# Commandline arguments for webui.py, for example: export COMMANDLINE_ARGS="--medvram --opt-split-attention"
export COMMANDLINE_ARGS="--port 3001 --skip-install --listen --api --xformers --enable-insecure-extension-access --no-half-vae"
export COMMANDLINE_ARGS="--port 3001 --skip-install --listen --api --xformers --enable-insecure-extension-access --no-half-vae ${A1111_EXTRA_ARGS}"

# python3 executable
#python_cmd="python3"
Expand Down Expand Up @@ -46,4 +46,8 @@ venv_dir=VENV_PATH
# Uncomment to disable TCMalloc
#export NO_TCMALLOC="True"

WEBUI_USER_LOCAL=${WEBUI_USER_LOCAL:-./webui-user.local.sh}
if [ -e "$WEBUI_USER_LOCAL" ]; then
source "$WEBUI_USER_LOCAL"
fi
###########################################
2 changes: 1 addition & 1 deletion scripts/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,6 @@ start_runpod_uploader
execute_script "/pre_start.sh" "Running pre-start script..."
configure_filezilla
export_env_vars
execute_script "/post_start.sh" "Running post-start script..."
execute_script "${POST_START_SH:-/post_start.sh}" "Running post-start script..."
echo "Container is READY!"
sleep infinity