1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00
dockerfiles/memgraph/docker-compose.yml

32 lines
671 B
YAML
Raw Normal View History

2024-02-21 08:03:19 +00:00
#
# See: https://memgraph.com/docs/configuration/configuration-settings
#
version: "3.8"
2024-02-21 16:16:35 +00:00
2024-02-21 08:03:19 +00:00
services:
2024-02-21 16:16:35 +00:00
memgraph:
image: memgraph/memgraph-mage:1.14.1-memgraph-2.14.1
2024-02-21 08:03:19 +00:00
ports:
- "7444:7444" # Log
- "7687:7687" # Bolt
volumes:
2024-02-21 16:16:35 +00:00
# ./data/etc:/etc/memgraph
2024-02-21 08:03:19 +00:00
- ./data/log:/var/log/memgraph
2024-02-21 16:16:35 +00:00
- ./data/var:/var/lib/memgraph
environment:
- MEMGRAPH=--telemetry-enabled=false
restart: unless-stopped
lab:
image: memgraph/lab:2.11.1
ports:
- "3000:3000" # Web
2024-02-21 08:03:19 +00:00
environment:
2024-02-21 16:16:35 +00:00
- QUICK_CONNECT_MG_HOST=memgraph
- QUICK_CONNECT_MG_PORT=7687
depends_on:
- memgraph
2024-02-21 08:03:19 +00:00
restart: unless-stopped