Skip to content

Commit 406e11f

Browse files
committed
chore: add docker-compose for MCP server deployment
1 parent 6223464 commit 406e11f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

docker-compose.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
services:
2+
graphmemory:
3+
image: ghcr.io/graph-memory/graphmemory-server:${IMAGE_TAG:-latest}
4+
restart: unless-stopped
5+
ports:
6+
- "${GRAPHMEMORY_LISTEN:-127.0.0.1:3000}:3000"
7+
volumes:
8+
- ./graph-memory.yaml:/data/config/graph-memory.yaml:ro
9+
- ${PROJECTS_DIR:-/srv/projects}:/data/projects
10+
- models:/data/models
11+
environment:
12+
- NODE_ENV=production
13+
14+
volumes:
15+
models:

0 commit comments

Comments
 (0)