1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-02-15 14:03:32 +02:00
dockerfiles/memgraph/docker-compose.yml
2024-10-26 17:47:02 +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.20.1-memgraph-2.20.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.17.0
ports:
- "3000:3000" # Web
environment:
- QUICK_CONNECT_MG_HOST=memgraph
- QUICK_CONNECT_MG_PORT=7687
depends_on:
- memgraph
restart: unless-stopped