Skip to content

Running

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.3.0 for linux amd64:

bash
$ wget https://github.com/vchain-us/immudb/releases/download/v1.3.0/immudb-v1.3.0-linux-amd64
$ mv immudb-v1.3.0-linux-amd64 immudb
$ chmod +x immudb

# run immudb in the foreground to see all output
$ ./immudb

# or run immudb in the background
$ ./immudb -d

Alternatively, you may pull immudb docker image from DockerHub and run it in a ready-to-use container:

bash
$ docker run -d --net host -it --rm --name immudb codenotary/immudb:latest

Released under the Apache 2.0 License.