To build the binaries yourself, simply clone this repo and run
make all
To embed the webconsole, build with
rm -rf webconsole/dist # force download of the correct webconsole version
make WEBCONSOLE=default
This will download the appropriate webconsole release and add the Go build tag webconsole
which will use the go:embed to embed the front-end code.
The front-end will be then served in the web API root "/".
To regenerate the default page, change the files in webconsole/default and run make webconsole/default
GOOS=linux GOARCH=amd64 make immuclient-static immuadmin-static immudb-static
GOOS=darwin GOARCH=amd64 make immuclient-static immuadmin-static immudb-static
GOOS=windows GOARCH=amd64 make immuclient-static immuadmin-static immudb-static
GOOS=freebsd GOARCH=amd64 make immuclient-static immuadmin-static immudb-static
If you want to build the container images yourself, simply clone this repo and run
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 .
And then run immudb as described when pulling official immudb Docker image.