-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
80 lines (75 loc) · 2.1 KB
/
docker-compose.yml
File metadata and controls
80 lines (75 loc) · 2.1 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
75
76
77
78
79
80
services:
adk:
container_name: in-idea-reasoning-agent-adk
restart: no
build:
context: ./build
dockerfile: Dockerfile.adk
ports:
- "8000:8000"
volumes:
- ./app/adk:/app
#- ~/.config/gcloud:/root/.config/gcloud
environment:
- GOOGLE_API_KEY=${GOOGLE_API_KEY}
#- GOOGLE_APPLICATION_CREDENTIALS=/root/.config/gcloud/application_default_credentials.json
neo4j:
container_name: in-idea-reasoning-agent-neo4j
restart: no
image: neo4j:2025.10.1
ports:
- "7474:7474"
- "7687:7687"
volumes:
- ./app/neo4j/data:/data
- ./app/neo4j/logs:/logs
- ./app/neo4j/import:/import
environment:
- NEO4J_AUTH=neo4j/password
- NEO4J_server_memory_heap_initial__size=512m
- NEO4J_server_memory_heap_max__size=1G
# APOC
- NEO4J_PLUGINS=["apoc"]
- NEO4J_apoc_export_file_enabled=true
- NEO4J_apoc_import_file_enabled=true
- NEO4J_apoc_import_file_use__neo4j__config=true
# VectorIndex
- NEO4J_dbms_jvm_additional=--add-modules jdk.incubator.vector
fma:
container_name: in-idea-reasoning-agent-fma
restart: no
build:
context: ./build
dockerfile: Dockerfile.fma
ports:
- "8001:8001"
volumes:
- ./app/fma:/app/app
- ./logs:/logs
# mount for session reading (required for `get_similar_units_by_image()`)
- ./app/adk:/adk
environment:
- NEO4J_URI=bolt://neo4j:7687
- NEO4J_USER=neo4j
- NEO4J_PASSWORD=password
- ENV=development
# Dockerfile CMD overwrite for Hot-Reloading
command: uvicorn app.main:app --host 0.0.0.0 --port 8001 --reload
depends_on:
- neo4j
embed:
container_name: in-idea-reasoning-agent-embed
restart: no
build:
context: ./build
dockerfile: Dockerfile.embed
ports:
- "8002:8002"
volumes:
- ./app/embed:/app/app
- ./logs:/logs
# Dockerfile CMD overwrite for Hot-Reloading
command: uvicorn app.main:app --host 0.0.0.0 --port 8002 --reload
networks:
in-idea-reasoning-agent-network:
driver: bridge