-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.memory.yml
More file actions
46 lines (44 loc) · 1.15 KB
/
Copy pathdocker-compose.memory.yml
File metadata and controls
46 lines (44 loc) · 1.15 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
services:
qdrant:
image: qdrant/qdrant:v1.14.0
ports:
- "6333:6333"
volumes:
- qdrant_data:/qdrant/storage
mem_limit: 256m
cpus: 1
environment:
QDRANT__STORAGE__ON_DISK_PAYLOAD: "true"
QDRANT__STORAGE__WAL__WAL_CAPACITY_MB: "16"
QDRANT__STORAGE__PERFORMANCE__MAX_SEARCH_THREADS: "1"
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:6333/healthz"]
interval: 30s
timeout: 5s
retries: 3
neo4j:
image: neo4j:5.26-community
ports:
- "7687:7687"
- "7474:7474"
environment:
NEO4J_AUTH: neo4j/jobpulse
NEO4J_PLUGINS: '["apoc"]'
NEO4J_server_memory_heap_initial__size: "128m"
NEO4J_server_memory_heap_max__size: "256m"
NEO4J_server_memory_pagecache_size: "64m"
NEO4J_db_tx__log_rotation_retention__policy: "2 files"
volumes:
- neo4j_data:/data
mem_limit: 512m
cpus: 1
restart: unless-stopped
healthcheck:
test: ["CMD", "cypher-shell", "-u", "neo4j", "-p", "jobpulse", "RETURN 1"]
interval: 30s
timeout: 5s
retries: 3
volumes:
qdrant_data:
neo4j_data: