I can see that Memgraph has a couple of Docker images available on the Docker Hub. There is: memgraph-platform, memgraph-mage and memgraph image. What is the difference between those three?
CodePudding user response:
Depending on the image you install you get various products:
- If you run
memgraphimage you will install Memgraph DB - If you run
memgraph-mageimage you will install Memgraph DB MAGE (library with advanced graph algorithms) - If you run
memgraph-platformimage you will install Memgraph DB, MAGE, mgconsole (command-line interface for running queries) and Memgraph Lab (visual user interface for running queries and visualizing graph data)
So run the image depending on what products you need - if you are not sure Memgraph Platform is always a good choice because you'll get the complete solution!
