This repository was archived by the owner on Feb 11, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (52 loc) · 1.78 KB
/
docker-compose.yml
File metadata and controls
52 lines (52 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
version: '3.3'
services:
open-webui:
# ghcr.io/open-webui/open-webui:main
image: hub.cs.upb.de/dice-research/images/open-webui@sha256:a7368a98dcc4e439575d991b25770bfc73188da6e50020dad3911caffa8c48c7
environment:
ENABLE_PERSISTENT_CONFIG: "False"
DEFAULT_PROMPT_SUGGESTIONS: '[{"title": ["KI-Gesetz", "Warum reguliert"], "content": "Warum muss die Verwendung künstlicher Intelligenz reguliert werden?"}]'
ENABLE_TITLE_GENERATION: "False"
OFFLINE_MODE: "True"
USER_PERMISSIONS_CHAT_FILE_UPLOAD: "False"
USER_PERMISSIONS_CHAT_TEMPORARY_ENFORCED: "True"
USER_PERMISSIONS_FEATURES_CODE_INTERPRETER: "False"
USER_PERMISSIONS_FEATURES_IMAGE_GENERATION: "False"
USER_PERMISSIONS_FEATURES_WEB_SEARCH: "False"
WEBUI_NAME: "Learn2RAG"
ports:
- "3000:8080"
volumes:
- open-webui-data:/app/backend/data
open-webui-pipelines:
# ghcr.io/open-webui/pipelines:main
image: hub.cs.upb.de/dice-research/images/open-webui-pipelines@sha256:53858fbba70f55171d21eff5820f202cac43babf4e627f01472105407982d49a
environment:
PIPELINES_URLS: "https://github.com/open-webui/pipelines/blob/48ddbec455de76fc43224daf3438537cd8fcde87/examples/pipelines/integrations/langgraph_pipeline/langgraph_stream_pipeline.py"
ports:
- "9098:9098"
volumes:
- open-webui-pipelines:/app/pipelines
qdrant:
image: qdrant/qdrant:v1.14.1
restart: always
container_name: qdrant
ports:
- 6336:6333
- 6334:6334
expose:
- 6336
- 6334
- 6335
configs:
- source: qdrant_config
target: /qdrant/config/production.yaml
volumes:
- ./qdrant_data:/qdrant/storage
volumes:
open-webui-data:
open-webui-pipelines:
configs:
qdrant_config:
content: |
log_level: INFO