From 4fe47f43be441ae3fd29ccc0f7ceb20f732d508b Mon Sep 17 00:00:00 2001 From: jmtatsch Date: Fri, 1 Mar 2024 17:45:32 +0100 Subject: [PATCH] Update run-compose.sh fix webui port not being effective --- run-compose.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-compose.sh b/run-compose.sh index 7b0f8d2b..08fba272 100755 --- a/run-compose.sh +++ b/run-compose.sh @@ -182,7 +182,7 @@ else export OLLAMA_DATA_DIR=$data_dir # Set OLLAMA_DATA_DIR environment variable fi if [[ -n $webui_port ]]; then - export OLLAMA_WEBUI_PORT=$webui_port # Set OLLAMA_WEBUI_PORT environment variable + export OPEN_WEBUI_PORT=$webui_port # Set OPEN_WEBUI_PORT environment variable fi DEFAULT_COMPOSE_COMMAND+=" up -d" DEFAULT_COMPOSE_COMMAND+=" --remove-orphans"