docker info

This commit is contained in:
DrMelone
2025-12-20 22:00:15 +01:00
parent 9a0541d65e
commit eb4cef3482
4 changed files with 47 additions and 9 deletions

View File

@@ -36,3 +36,10 @@ Create isolated Python environments using `venv`.
```bash
open-webui serve
```
:::tip 'open-webui: command not found'?
If your terminal says the command doesn't exist:
1. Ensure your virtual environment is **activated** (Step 2).
2. If you still get an error, try running it via Python directly: `python -m open_webui serve`
3. If you want to store your data in a specific place, use: `DATA_DIR=./data open-webui serve`
:::