Building from source
Build the binaries
Building binaries requires a Linux operating system.
To build the binaries yourself, simply clone immudb repository and run:
bash
make allimmudb can be cross compiled for different systems and architectures by setting GOOS and GOARCH variables, i.e.:
bash
GOOS=windows GOARCH=amd64 make allmacOS specific
The community already added immudb to HomeBrew, therefore you can simply run
bash
brew install immudbBuild the Docker images
If you want to build the container images yourself, simply clone immudb repository and run:
bash
docker build -t myown/immudb:latest -f Dockerfile .
docker build -t myown/immuadmin:latest -f Dockerfile.immuadmin .
docker build -t myown/immuclient:latest -f Dockerfile.immuclient .