open-blazorui is a simple UI for your local LLMs. Drawing inspiration from the fantastic - open-webui.
This guide explains how to build and run the open-blazorui Docker image.
Before you begin, ensure you have the following installed:
- Docker: Install Docker
To build the Docker image, use the following command:
- (Note: Please run the command in the root folder of the project.)
docker build -f src/Open.Blazor.Ui/Dockerfile -t blazor-ui .
Once the image is built, you can run the Docker container with the following command:
docker run -p 8081:8080 -d blazor-ui
open-blazorui is now running inside the Docker container. You can access it by navigating to http://localhost:8081/ in your web browser.
If you prefer to use Docker Compose for managing your Docker containers, you can use the provided Docker Compose configuration file.
-
Locate the
docker-compose-local.yml
file in the root folder of your project. -
Run the following command to start the containers defined in the Docker Compose file:
docker-compose -f docker-compose-local.yml up
docker-compose -f docker-compose.yml up
A: Run the following command when starting Ollama on your machine.
$env:OLLAMA_ORIGINS="https://obaki102.github.io"; ollama serve