-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
74 lines (67 loc) · 1.64 KB
/
Copy pathdocker-compose.yml
File metadata and controls
74 lines (67 loc) · 1.64 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
version: '3.9'
services:
docling:
build: ./docling-service
container_name: atlas-docling
ports:
- "8000:8000"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
interval: 30s
timeout: 10s
retries: 3
raptor:
build: ./raptor-service
container_name: atlas-raptor
ports:
- "8001:8001"
environment:
- GEMINI_API_KEY=${GEMINI_API_KEY}
postgres:
image: pgvector/pgvector:pg16
container_name: atlas-postgres
environment:
POSTGRES_USER: atlas
POSTGRES_PASSWORD: atlas
POSTGRES_DB: atlas
ports:
- "5432:5432"
volumes:
- atlas-postgres-data:/var/lib/postgresql/data
prometheus:
image: prom/prometheus:latest
container_name: atlas-prometheus
ports:
- "9090:9090"
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
extra_hosts:
- "host.docker.internal:host-gateway" # lets prometheus reach localhost:3001
grafana:
image: grafana/grafana:latest
container_name: atlas-grafana
ports:
- "3030:3000"
environment:
- GF_SECURITY_ADMIN_USER=admin
- GF_SECURITY_ADMIN_PASSWORD=atlas
- GF_USERS_ALLOW_SIGN_UP=false
volumes:
- atlas-grafana-data:/var/lib/grafana
depends_on:
- prometheus
neo4j:
image: neo4j:5
container_name: atlas-neo4j
environment:
NEO4J_AUTH: neo4j/atlaspassword
NEO4J_PLUGINS: '["apoc"]'
ports:
- "7474:7474" # browser UI
- "7687:7687" # bolt protocol
volumes:
- atlas-neo4j-data:/data
volumes:
atlas-postgres-data:
atlas-neo4j-data:
atlas-grafana-data: