-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
48 lines (43 loc) · 1.01 KB
/
docker-compose.yml
File metadata and controls
48 lines (43 loc) · 1.01 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
# ---------- For local dev only ----------
services:
openwebui:
image: ghcr.io/open-webui/open-webui:main
container_name: openwebui
env_file: ".env"
ports:
- "3000:8080"
networks:
- llmephant
volumes:
- open-webui:/app/backend/data
qdrant:
image: qdrant/qdrant:latest
container_name: qdrant
restart: no
networks:
- llmephant
volumes:
- llmephant_qdrant:/qdrant/storage
memory-api:
build:
context: .
dockerfile: Dockerfile.api
image: memory-api:dev
container_name: memory-api
env_file: ".env"
environment:
- LOG_COLORIZE=true
restart: no
depends_on:
- qdrant
networks:
- llmephant
command: [ "uvicorn", "llmephant.app:app", "--host", "0.0.0.0", "--port", "8080", "--reload" ]
volumes:
- ./src:/app/src
- ${TOOLING_CONFIG_FILE}:/app/tooling_config.yml:ro
volumes:
llmephant_qdrant:
open-webui:
networks:
llmephant: