Commit 482b4be1 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

doc: line break removed

parent 524841f0
...@@ -128,18 +128,14 @@ Don't forget to explore our sibling project, [OllamaHub](https://ollamahub.com/) ...@@ -128,18 +128,14 @@ Don't forget to explore our sibling project, [OllamaHub](https://ollamahub.com/)
- **If Ollama is on your computer**, use this command: - **If Ollama is on your computer**, use this command:
```bash ```bash
docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway \ docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway -v ollama-webui:/app/backend/data --name ollama-webui --restart always ghcr.io/ollama-webui/ollama-webui:main
-v ollama-webui:/app/backend/data --name ollama-webui --restart always \
ghcr.io/ollama-webui/ollama-webui:main
``` ```
- **To build the container yourself**, follow these steps: - **To build the container yourself**, follow these steps:
```bash ```bash
docker build -t ollama-webui . docker build -t ollama-webui .
docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway \ docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway -v ollama-webui:/app/backend/data --name ollama-webui --restart always ollama-webui
-v ollama-webui:/app/backend/data --name ollama-webui --restart always \
ollama-webui
``` ```
- After installation, you can access Ollama Web UI at [http://localhost:3000](http://localhost:3000). - After installation, you can access Ollama Web UI at [http://localhost:3000](http://localhost:3000).
...@@ -149,18 +145,14 @@ Don't forget to explore our sibling project, [OllamaHub](https://ollamahub.com/) ...@@ -149,18 +145,14 @@ Don't forget to explore our sibling project, [OllamaHub](https://ollamahub.com/)
- To connect to Ollama on another server, change the `OLLAMA_API_BASE_URL` to the server's URL: - To connect to Ollama on another server, change the `OLLAMA_API_BASE_URL` to the server's URL:
```bash ```bash
docker run -d -p 3000:8080 -e OLLAMA_API_BASE_URL=https://example.com/api \ docker run -d -p 3000:8080 -e OLLAMA_API_BASE_URL=https://example.com/api -v ollama-webui:/app/backend/data --name ollama-webui --restart always ghcr.io/ollama-webui/ollama-webui:main
-v ollama-webui:/app/backend/data --name ollama-webui --restart always \
ghcr.io/ollama-webui/ollama-webui:main
``` ```
Or for a self-built container: Or for a self-built container:
```bash ```bash
docker build -t ollama-webui . docker build -t ollama-webui .
docker run -d -p 3000:8080 -e OLLAMA_API_BASE_URL=https://example.com/api \ docker run -d -p 3000:8080 -e OLLAMA_API_BASE_URL=https://example.com/api -v ollama-webui:/app/backend/data --name ollama-webui --restart always ollama-webui
-v ollama-webui:/app/backend/data --name ollama-webui --restart always \
ollama-webui
``` ```
### Installing Ollama and Ollama Web UI Together ### Installing Ollama and Ollama Web UI Together
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment