30 lines
798 B
Markdown
30 lines
798 B
Markdown
# Open WebUI
|
|
|
|
Deploy Open WebUI for LLM interactions using Docker Compose.
|
|
|
|
## Description
|
|
|
|
Open WebUI is a user-friendly web interface for Large Language Models, compatible with OpenAI API.
|
|
|
|
## Variables
|
|
|
|
### Optional
|
|
|
|
| Variable | Default | Description |
|
|
|----------|---------|-------------|
|
|
| `open_webui_http_port` | `5000` | Web interface port |
|
|
| `open_webui_data_path` | `{{ app_dir }}/data` | Application data storage |
|
|
| `open_webui_container_version` | `main` | Open WebUI Docker image tag |
|
|
| `open_webui_env_vars` | See defaults | Dictionary of environment variables |
|
|
|
|
## Example
|
|
|
|
```yaml
|
|
- role: patrickj.docker_apps.open-webui
|
|
vars:
|
|
open_webui_http_port: 8080
|
|
open_webui_env_vars:
|
|
OLLAMA_BASE_URL: http://localhost:11434
|
|
BYPASS_MODEL_ACCESS_CONTROL: "true"
|
|
```
|