-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
60 lines (56 loc) · 1.31 KB
/
docker-compose.yml
File metadata and controls
60 lines (56 loc) · 1.31 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
53
54
55
56
57
58
59
60
services:
zerda:
image: ghcr.io/mgrsc/zerda:latest
pull_policy: always
init: true
hostname: e-desert
restart: unless-stopped
env_file: .env
environment:
- ZERDA_CONFIG=/root/.zerda/zerda.toml
volumes:
- zerda-data:/root/.zerda
- ./zerda.toml:/root/.zerda/zerda.toml
- ./identity.md:/root/.zerda/identity.md
# - ./mcp.toml:/root/.zerda/mcp.toml
depends_on:
- memory-service
- qdrant
postgres:
image: postgres:18.3-alpine3.23
restart: unless-stopped
environment:
POSTGRES_DB: memburrow
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
volumes:
- postgres-data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres -d memburrow"]
interval: 5s
timeout: 3s
retries: 20
qdrant:
image: docker.io/qdrant/qdrant
restart: unless-stopped
ports:
- "6333:6333"
- "6334:6334"
volumes:
- qdrant-data:/qdrant/storage
memory-service:
image: ghcr.io/mgrsc/memburrow:latest
restart: unless-stopped
stop_signal: SIGTERM
stop_grace_period: 5s
env_file:
- .env.distributed.example
ports:
- "8080:8080"
depends_on:
- postgres
- qdrant
volumes:
zerda-data:
postgres-data:
qdrant-data: