-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
54 lines (49 loc) · 1.16 KB
/
docker-compose.yml
File metadata and controls
54 lines (49 loc) · 1.16 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
version: "3.10"
services:
redis:
image: redis:7-alpine
container_name: tracefox-redis
command: ["redis-server", "--requirepass", "${REDIS_PASSWORD}"]
env_file:
- .env
ports:
- "6379:6379"
postgres:
image: postgres:15-alpine
container_name: tracefox-postgres
env_file:
- .env
environment:
POSTGRES_USER: ${TRACEFOX_POSTGRES__USER}
POSTGRES_PASSWORD: ${TRACEFOX_POSTGRES__PASSWORD}
POSTGRES_DB: ${TRACEFOX_POSTGRES__DATABASE}
ports:
- "${TRACEFOX_POSTGRES__PORT:-5432}:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
neo4j:
image: neo4j:5.22
container_name: tracefox-neo4j
environment:
NEO4J_AUTH: "${NEO4J_USER}/${NEO4J_PASSWORD}"
ports:
- "7474:7474"
- "7687:7687"
volumes:
- neo4j_data:/data
- neo4j_logs:/logs
qdrant:
image: qdrant/qdrant:v1.9.0
container_name: tracefox-qdrant
environment:
QDRANT__SERVICE__API_KEY: "${QDRANT_API_KEY:-}"
ports:
- "6333:6333"
- "6334:6334"
volumes:
- qdrant_data:/qdrant/storage
volumes:
neo4j_data:
neo4j_logs:
qdrant_data:
postgres_data: