Files
memgraph-poc/docker-compose.yml
2025-11-05 11:14:46 +09:00

37 lines
800 B
YAML

services:
memgraph:
build:
context: .
dockerfile: Dockerfile
args:
UID: 1001
GID: 1001
container_name: memgraph-mage
pull_policy: always
environment:
- storage-properties-on-edges=true
- storage-mode=true=IN_MEMORY_TRANSACTIONAL
ulimits:
stack:
soft: 33554432
hard: 33554432
ports:
- "7687:7687"
- "7444:7444"
volumes:
- ./memgraph-data:/var/lib/memgraph
- ./conf/memgraph.conf:/etc/memgraph/memgraph.conf
- ./data:/data
lab:
image: memgraph/lab:latest
container_name: memgraph-lab
pull_policy: always
ports:
- "3000:3000"
depends_on:
- memgraph
environment:
- QUICK_CONNECT_MG_HOST=memgraph
- QUICK_CONNECT_MG_PORT=7687