-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (39 loc) · 875 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
41 lines (39 loc) · 875 Bytes
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
services:
lucentdocs:
image: sandmor/lucentdocs:latest
ports:
- '5677:5677'
env_file:
- .env
environment:
HOST: 0.0.0.0
NODE_ENV: production
LUCENTDOCS_DATA_DIR: /app/data
QDRANT_URL: http://qdrant:6333
volumes:
- lucentdocs-data:/app/data
restart: unless-stopped
healthcheck:
test:
[
'CMD',
'bun',
'-e',
"fetch('http://127.0.0.1:5677/.well-known/docker-health').then((r)=>process.exit(r.status===204?0:1)).catch(()=>process.exit(1))",
]
interval: 30s
timeout: 5s
start_period: 30s
retries: 3
qdrant:
profiles:
- qdrant
image: qdrant/qdrant:latest
ports:
- '6333:6333'
volumes:
- qdrant-data:/qdrant/storage
restart: unless-stopped
volumes:
lucentdocs-data:
qdrant-data: