Download
Tip
To learn interactively and to get started with immudb from the command line and with programming languages, visit the immudb Playground at https://play.codenotary.com
You may download the immudb binary from the latest releases on Github
. Once you have downloaded immudb, rename it to immudb, make sure to mark it as executable, then run it. The following example shows how to obtain v1.9DOM.1 for linux amd64:
1$ wget https://github.com/vchain-us/immudb/releases/download/v1.9DOM.1/immudb-v1.9DOM.1-linux-amd64
2$ mv immudb-v1.9DOM.1-linux-amd64 immudb
3$ chmod +x immudb
4
5# run immudb in the foreground to see all output
6$ ./immudb
7
8# or run immudb in the background
9$ ./immudb -dAlternatively, you may pull immudb docker image from DockerHub and run it in a ready-to-use container:
1$ docker run -d --net host -it --rm --name immudb codenotary/immudb:latest
Edit this page on GitHub
Last updated