Commit ·
5d806ec
1
Parent(s): a93b17e
Upload compose.yaml with huggingface_hub
Browse files- compose.yaml +17 -0
compose.yaml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
services:
|
| 2 |
+
open-webui:
|
| 3 |
+
image: ghcr.io/open-webui/open-webui:main
|
| 4 |
+
ports:
|
| 5 |
+
- "3000:8080"
|
| 6 |
+
environment:
|
| 7 |
+
- OPENAI_API_BASE_URL=http://host.docker.internal:8080/v1
|
| 8 |
+
- OPENAI_API_KEY=not-needed
|
| 9 |
+
- WEBUI_AUTH=false
|
| 10 |
+
- DEFAULT_MODELS=SmolLM3
|
| 11 |
+
extra_hosts:
|
| 12 |
+
- "host.docker.internal:host-gateway"
|
| 13 |
+
volumes:
|
| 14 |
+
- open-webui:/app/backend/data
|
| 15 |
+
|
| 16 |
+
volumes:
|
| 17 |
+
open-webui:
|