Home > Net >  What is the difference between Memgraph Docker images?
What is the difference between Memgraph Docker images?

Time:05-18

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 memgraph image you will install Memgraph DB
  • If you run memgraph-mage image you will install Memgraph DB MAGE (library with advanced graph algorithms)
  • If you run memgraph-platform image 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!

  • Related