Files
memgraph-poc/docker-compose.yml
2025-11-04 16:45:03 +09:00

35 lines
729 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
ulimits:
stack:
soft: 33554432
hard: 33554432
ports:
- "7687:7687"
- "7444:7444"
volumes:
- ./memgraph-data:/var/lib/memgraph
- ./conf/memgraph.conf:/etc/memgraph/memgraph.conf
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