1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-11-29 22:38:35 +02:00

update memgraph

This commit is contained in:
kevin
2024-02-22 00:16:35 +08:00
parent 84eb9a8130
commit de11914917
2 changed files with 43 additions and 28 deletions

View File

@@ -3,18 +3,29 @@
#
version: "3.8"
services:
memgraph-platform:
image: "memgraph/memgraph-platform:2.14.1-memgraph2.14.1-lab2.11.1-mage1.14.1"
entrypoint: ["/usr/bin/supervisord"]
memgraph:
image: memgraph/memgraph-mage:1.14.1-memgraph-2.14.1
ports:
- "3000:3000" # Web
- "7444:7444" # Log
- "7687:7687" # Bolt
volumes:
- ./data/var:/var/lib/memgraph
# ./data/etc:/etc/memgraph
- ./data/log:/var/log/memgraph
- ./data/etc:/etc/memgraph
- ./data/var:/var/lib/memgraph
environment:
MEMGRAPH: "--log-level=WARNING --also-log-to-stderr"
- MEMGRAPH=--telemetry-enabled=false
restart: unless-stopped
lab:
image: memgraph/lab:2.11.1
ports:
- "3000:3000" # Web
environment:
- QUICK_CONNECT_MG_HOST=memgraph
- QUICK_CONNECT_MG_PORT=7687
depends_on:
- memgraph
restart: unless-stopped