Skip to content

Update MAGE tag info #1242

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 22, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion pages/advanced-algorithms/install-mage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,28 @@ data.

You can download a specific version of MAGE

For example, if you want to download version `3.1.1`, you should run the following
For example, if you want to download version `3.2`, you should run the following
command:

```shell
docker run -p 7687:7687 --name memgraph memgraph/memgraph-mage:3.2
```

The following tags are available on Docker Hub:
- `x.y` - production MAGE image
- `x.y-relwithdebinfo` - contains debugging symbols and `gdb`
- `x.y-malloc` - Memgraph compiled with `malloc`instead of `jemalloc` (x86_64 only)

For versions prior to `3.2`, MAGE image tags included both MAGE and Memgraph versions, e.g.

```shell
docker run -p 7687:7687 --name memgraph memgraph/memgraph-mage:3.1.1-memgraph-3.1.1
```

A `no-ml` image (e.g. `3.1.1-memgraph-3.1.1-no-ml`) was also provided, but this has now been
discontinued as of `3.2` onwards.


</Callout>

## Linux
Expand Down