The “DeepSeek & Llama powered All-in-One LLM Suite” solution provided by techlatest.net comes with an Open WebUI chat interface running in a container. This section describes how to upgrade existing Open WebUI chat interface to the latest version.
Note: Please check our Getting Started Guide pages to learn how to deploy and connect to the ‘DeepSeek & Llama-powered All-in-One LLM Suite’ solution via terminal, as well as how to access the Open WebUI interface. Alternatively, check the GPU-supported DeepSeek & Llama-powered All-in-One LLM Suite if you are using a GPU-based alternative of the same offer.
2.To upgrade to the latest release, connect via terminal and check the running Container using -
sudo docker ps -a
Here the name of the container is “open-webui”. Remove the container by entering below commands -
sudo docker stop open-webui
sudo docker rm open-webui
sudo docker images
sudo docker rmi ghcr.io/open-webui/open-webui:main
sudo docker volume ls
Here we have open-webui volume. If you want to remove the volume as well and start a fresh copy of Open WebUI then run
sudo docker volume rm open-webui
sudo docker pull ghcr.io/open-webui/open-webui:main
sudo docker run -d -v open-webui:/app/backend/data --network host -e OLLAMA_BASE_URL=http://127.0.0.1:11434 --restart always --name open-webui ghcr.io/open-webui/open-webui:main
Note: If you are on GPU based instance, then please run below docker run command to launch the container.
sudo docker run -d --gpus all -v open-webui:/app/backend/data --network host -e OLLAMA_BASE_URL=http://127.0.0.1:11434 --restart always --name open-webui ghcr.io/open-webui/open-webui:main