1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-27 09:18:43 +00:00
dockerfiles/memgraph/docker-compose.yml
2024-02-21 16:03:19 +08:00

21 lines
559 B
YAML

#
# See: https://memgraph.com/docs/configuration/configuration-settings
#
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"]
ports:
- "3000:3000" # Web
- "7444:7444" # Log
- "7687:7687" # Bolt
volumes:
- ./data/var:/var/lib/memgraph
- ./data/log:/var/log/memgraph
- ./data/etc:/etc/memgraph
environment:
MEMGRAPH: "--log-level=WARNING --also-log-to-stderr"
restart: unless-stopped