-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (31 loc) · 884 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
33 lines (31 loc) · 884 Bytes
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
services:
memgraph:
image: memgraph/memgraph:latest
ports:
- "7687:7687"
- "7444:7444"
volumes:
- memgraph-data:/var/lib/memgraph
- memgraph-config:/etc/memgraph
- memgraph-logs:/var/log/memgraph
restart: unless-stopped
app:
build: .
ports:
- "5050:5050"
environment:
- MEMGRAPH_URI=bolt://memgraph:7687
- MEMGRAPH_USERNAME=${MEMGRAPH_USERNAME:-}
- MEMGRAPH_PASSWORD=${MEMGRAPH_PASSWORD}
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY:-}
- ANTHROPIC_FOUNDRY_API_KEY=${ANTHROPIC_FOUNDRY_API_KEY:-}
- ANTHROPIC_FOUNDRY_BASE_URL=${ANTHROPIC_FOUNDRY_BASE_URL:-}
- ANTHROPIC_FOUNDRY_MODEL=${ANTHROPIC_FOUNDRY_MODEL:-}
- ADMIN_PASSWORD=${ADMIN_PASSWORD:-}
depends_on:
- memgraph
restart: unless-stopped
volumes:
memgraph-data:
memgraph-config:
memgraph-logs: