1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-20 04:59:27 +02:00
dockerfiles/memgraph/docker-compose.yml
2024-12-23 13:24:07 +08:00

32 lines
677 B
YAML

#
# See: https://memgraph.com/docs/configuration/configuration-settings
#
version: "3.8"
services:
memgraph:
image: memgraph/memgraph-mage:1.22.1-memgraph-2.22.1-no-ml
ports:
- "7444:7444" # Log
- "7687:7687" # Bolt
volumes:
# ./data/etc:/etc/memgraph
- ./data/log:/var/log/memgraph
- ./data/var:/var/lib/memgraph
environment:
- MEMGRAPH=--telemetry-enabled=false
restart: unless-stopped
lab:
image: memgraph/lab:2.19.1
ports:
- "3000:3000" # Web
environment:
- QUICK_CONNECT_MG_HOST=memgraph
- QUICK_CONNECT_MG_PORT=7687
depends_on:
- memgraph
restart: unless-stopped