1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/memgraph/docker-compose.yml
2024-08-05 09:13:08 +08:00

32 lines
673 B
YAML

#
# See: https://memgraph.com/docs/configuration/configuration-settings
#
version: "3.8"
services:
memgraph:
image: memgraph/memgraph-mage:1.18-memgraph-2.18-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.15.0
ports:
- "3000:3000" # Web
environment:
- QUICK_CONNECT_MG_HOST=memgraph
- QUICK_CONNECT_MG_PORT=7687
depends_on:
- memgraph
restart: unless-stopped