mirror of
https://github.com/open-webui/open-webui.git
synced 2026-07-17 08:21:12 -05:00
[GH-ISSUE #8293] WEBUI_NAME environment name is not setting the WebUI name #15072
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @nitulkukadia on GitHub (Jan 3, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/8293
I have bring up the open web ui with the environment variable WEBUI_NAME.
https://docs.openwebui.com/getting-started/advanced-topics/env-configuration#webui_name
But is not displaying the same in the UI.
Have seen the code here, but seems it is not being used,
https://github.com/open-webui/open-webui/blob/main/backend/open_webui/config.py
Below is the compose file:
docker-compose.yaml. Replace necessary values before using
version: '3.8'
services:
open-webui:
image: ghcr.io/open-webui/open-webui:git-ffeae78
environment:
- 'WEBUI_AUTH_TRUSTED_EMAIL_HEADER=X-Forwarded-Email'
- OLLAMA_BASE_URL=http://0.0.0.0:11434
- WEBUI_NAME=Custom Name
- DEFAULT_USER_ROLE=admin
- ENABLE_MODEL_FILTER=True
- MODEL_FILTER_LIST=llama3:8b-instruct-q4_0; codellama:7b-instruct
restart: always
ports:
- 8080:8080
@tkg61 commented on GitHub (Jan 3, 2025):
If you have spaces in the name, make sure the value is wrapped in quotes. e.g. WEBUI_NAME='Custom Name'
@nitulkukadia commented on GitHub (Jan 3, 2025):
With the quotes, it is not working
@deseven commented on GitHub (Jan 3, 2025):
Try
key : valueformat:@nitulkukadia commented on GitHub (Jan 3, 2025):
Is this working for you ?