We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6223464 commit 406e11fCopy full SHA for 406e11f
docker-compose.yml
@@ -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