Spaces:
Running
Running
Create docker-compose.yml
Browse files- docker-compose.yml +17 -0
docker-compose.yml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
services:
|
| 2 |
+
open-webui:
|
| 3 |
+
image: ghcr.io/open-webui/open-webui:main
|
| 4 |
+
container_name: open-webuii
|
| 5 |
+
restart: always
|
| 6 |
+
ports:
|
| 7 |
+
- "3000:8080"
|
| 8 |
+
environment:
|
| 9 |
+
- ENV=production
|
| 10 |
+
- WEBUI_AUTH=false
|
| 11 |
+
- OPENAI_API_BASE_URL=https://api.deepinfra.com/v1/openai
|
| 12 |
+
- OPENAI_API_KEY=Qkg36ZyeOllw5Y7ARp3Xr7Gmq8JmR13B
|
| 13 |
+
volumes:
|
| 14 |
+
- open-webui:/app/backend/data
|
| 15 |
+
|
| 16 |
+
volumes:
|
| 17 |
+
open-webui: {}
|