Building from source
Build the binaries
Building binaries requires a Linux operating system.
To build the binaries yourself, simply clone this repo and run:
bash
make allBelow are instructions on how to build binaries for other architectures and systems.
Linux (by component)
bash
GOOS=linux GOARCH=amd64 make immuclient-static immuadmin-static immudb-staticMacOS (by component)
bash
GOOS=darwin GOARCH=amd64 make immuclient-static immuadmin-static immudb-staticWindows (by component)
bash
GOOS=windows GOARCH=amd64 make immuclient-static immuadmin-static immudb-staticBuild the Docker images
If you want to build the container images yourself, simply clone this repo 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 .