Skip to content
immudb docker run -d --net host -it --name immudb codenotary/immudb:latest

Build

Build the binaries#

Building binaries requires a Linux operating system.

To build the binaries yourself, simply clone immudb repository and run:

1make all

immudb can be cross compiled for different systems and architectures by setting GOOS and GOARCH variables, i.e.:

1GOOS=windows GOARCH=amd64 make all

macOS specific#

The community already added immudb to HomeBrew , therefore you can simply run

1brew install immudb

Build the Docker images#

If you want to build the container images yourself, simply clone immudb repository and run:

1docker build -t myown/immudb:latest -f Dockerfile .
2docker build -t myown/immuadmin:latest -f Dockerfile.immuadmin .
3docker build -t myown/immuclient:latest -f Dockerfile.immuclient .
Edit this page on GitHub Last updated