-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (51 loc) · 1.43 KB
/
docker-compose.yml
File metadata and controls
53 lines (51 loc) · 1.43 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
services:
portal:
build: .
container_name: cobol-migration-portal
restart: unless-stopped
ports:
- "5028:5028"
env_file:
- ./Config/ai-config.env
- ./Config/ai-config.local.env
volumes:
- ./Data:/app/Data
- ./Logs:/app/Logs
- ./Config:/app/Config
environment:
- MIGRATION_DB_PATH=/app/Data/migration.db
- Mcp__DotnetExecutable=dotnet
- Mcp__AssemblyPath=/app/cli/CobolToQuarkusMigration.dll
- Mcp__ConfigPath=/app/Config/appsettings.json
- Mcp__WorkingDirectory=/app
- ApplicationSettings__Neo4j__Uri=bolt://neo4j:7687
depends_on:
- neo4j
neo4j:
image: neo4j:5.15.0
container_name: cobol-migration-neo4j
restart: unless-stopped
ports:
- "7474:7474" # HTTP
- "7687:7687" # Bolt
environment:
- NEO4J_AUTH=neo4j/cobol-migration-2025
- NEO4J_PLUGINS=["apoc"]
- NEO4J_dbms_security_procedures_unrestricted=apoc.*
- NEO4J_dbms_memory_heap_initial__size=512m
- NEO4J_dbms_memory_heap_max__size=2G
- NEO4J_dbms_memory_pagecache_size=512m
volumes:
- neo4j_data:/data
- neo4j_logs:/logs
- neo4j_import:/var/lib/neo4j/import
healthcheck:
test: ["CMD-SHELL", "cypher-shell -u neo4j -p cobol-migration-2025 'RETURN 1' || exit 1"]
interval: 10s
timeout: 5s
retries: 5
start_period: 30s
volumes:
neo4j_data:
neo4j_logs:
neo4j_import: