Memgraph is a streaming graph application platform that helps you wrangle your streaming data, build sophisticated models you can query in real-time, and develop applications you never thought possible within a couple of days, not months. With the Memgraph Docker Extension, now you can set up the Memgraph platform in seconds.
Notice: The official Memgraph Docker Extension build can be found on Docker Hub.
To build the extension yourself, follow these instructions.
- Docker Desktop version 4.10 or higher
Whether you're using make
or manually building with Docker commands, please refer to the Makefile
for the current version (TAG
) and image name (IMAGE
) to use.
git clone https://github.com/memgraph/memgraph-docker-extension
cd memgraph-docker-extension
make build-extension
make install-extension
For those who do not have make
installed or prefer not to use it, you can build and install the extension manually using Docker commands. Be sure to check the Makefile
for the IMAGE
name and TAG
value to use for building the extension.
Replace <IMAGE>
and <TAG>
with the values found in the Makefile
. For example, if the Makefile
specifies IMAGE=memgraph/memgraph-docker-extension
and TAG=2.14.1
, use those values in the following command:
docker build --tag=<IMAGE>:<TAG> .
Using the same <IMAGE>
and <TAG>
values from the Makefile
, install the Docker extension:
docker extension install <IMAGE>:<TAG>
After installation, open the Docker Dashboard, navigate to Extensions, and select Memgraph to start exploring your data with the extension.
For any issues or contributions, please refer to the issues section on GitHub or submit a pull request.