Menu
Home
About
Our Role
Goals
The Team
Roadmap
Tokenomics
How To Buy
Knowledge Base
Contacts
Sitemap & Links
A.I.
Chart
Shop
IMMORTALITY
🏠
⬇️
OpenWeb UI Custom
Afrikaans
Shqip
አማርኛ
العربية
Հայերեն
Azərbaycan dili
Euskara
Беларуская мова
বাংলা
Bosanski
Български
Català
Cebuano
Chichewa
简体中文
繁體中文
Corsu
Hrvatski
Čeština
Dansk
Nederlands
English
Esperanto
Eesti
Filipino
Suomi
Français
Frysk
Galego
ქართული
Deutsch
Ελληνικά
ગુજરાતી
Kreyol ayisyen
Harshen Hausa
Ōlelo Hawaiʻi
עִבְרִית
हिन्दी
Hmong
Magyar
Íslenska
Igbo
Bahasa Indonesia
Gaeilge
Italiano
日本語
Basa Jawa
ಕನ್ನಡ
Қазақ тілі
ភាសាខ្មែរ
한국어
كوردی
Кыргызча
ພາສາລາວ
Latin
Latviešu valoda
Lietuvių kalba
Lëtzebuergesch
Македонски јазик
Malagasy
Bahasa Melayu
മലയാളം
Maltese
Te Reo Māori
मराठी
Монгол
ဗမာစာ
नेपाली
Norsk bokmål
پښتو
فارسی
Polski
Português
ਪੰਜਾਬੀ
Română
Русский
Samoan
Gàidhlig
Српски језик
Sesotho
Shona
سنڌي
සිංහල
Slovenčina
Slovenščina
Afsoomaali
Español
Basa Sunda
Kiswahili
Svenska
Тоҷикӣ
தமிழ்
తెలుగు
ไทย
Türkçe
Українська
اردو
O‘zbekcha
Tiếng Việt
Cymraeg
isiXhosa
יידיש
Yorùbá
Zulu
en
New name
B
I
U
S
link
image
code
HTML
list
Show page
Syntax
{pre} git clone https://github.com/open-webui/openwebui.git cd openwebui {/pre} Build the custom open webui {pre} docker build -t openwebui:latest . {/pre} Run the customer open webui {pre} docker run -d --name openwebui -p 3000:8080 openwebui:latest {/pre} Rebuild the image with the same tag: {pre} docker build -t openwebui:latest . {/pre} Stop and remove the existing container: {pre} docker stop openwebui docker rm openwebui {/pre} Run the new container: {pre} docker run -d --name openwebui -p 3000:8080 openwebui:latest {/pre} !!Changes {pre} /src/lib/components/layout/Help/HelpMenu.svelte /src/lib/components/layout/Sidebar/UserMenu.svelte /src/lib/i18n/locales/en-US/translation.json /src/lib/i18n/locales/en-GB/translation.json /src/routes/auth/+page.svelte /src/app.html /static/ /static/favicon/ /static/static/ /docker-compose.yaml /src/lib/components/chat/Messages/Placeholder.svelte /src/lib/components/chat/Settings/About.svelte /src/routes/(app)/+layout.svelte {/pre} !!Current Build and Run Command {pre} docker build -t openwebui:latest . {/pre} Run the customer open webui {pre} docker run -d --name openwebui -p 3000:8080 openwebui:latest {/pre} !!Custom Image with Ollama Support First, build your custom Open WebUI image: {pre} docker build -t custom-open-webui:latest . {/pre} Modify the docker-compose.yaml file to use your custom image instead of the official one. {pre} services: ollama: image: ollama/ollama:${OLLAMA_DOCKER_TAG-latest} volumes: - ollama:/root/.ollama container_name: ollama pull_policy: always tty: true restart: unless-stopped open-webui: image: custom-open-webui:latest container_name: open-webui volumes: - open-webui:/app/backend/data depends_on: - ollama ports: - ${OPEN_WEBUI_PORT-3000}:8080 environment: - 'OLLAMA_BASE_URL=http://ollama:11434' - 'WEBUI_SECRET_KEY=' extra_hosts: - host.docker.internal:host-gateway restart: unless-stopped volumes: ollama: {} open-webui: {} {/pre} Now you can use Docker Compose to start both services: {pre} docker-compose up -d {/pre} If you make further changes to your Open WebUI code, you'll need to: {pre} docker build -t custom-open-webui:latest . {/pre} Stop and remove the existing containers: {pre} docker-compose down {/pre} Start the services again: {pre} docker-compose up -d {/pre} {pre} docker-compose up --no-deps -d your_service {/pre}
Password
Summary of changes
📜
⏱️
⬆️