Docker
The Docker image file HighByte-Intelligence-Hub-X.X.X Docker (Build XXXX.X.X.X).tar
includes the Intelligence Hub runtime and configuration components, and is built from the alpine linux image with OpenJDK 21. This section covers how to install and run the docker image.
This is an x86_64 image. Other CPU architectures such as arm64 require building your own image from the installer.
Install
-
Run the following docker command to load the docker image:
bashdocker load -i "HighByte-Intelligence-Hub-X.X.X Docker (Build XXXX.X.X.X).tar"
-
Setup a volume to host the application configuration. This step is optional, but recommended so that you do not lose your configuration when performing future image updates.
bashdocker volume create hb_vol
-
Run the image. The below command includes making all ports available, but you may choose to restrict the ports. Remove the –mount source=hb_vol if not using a volume.
bashdocker run -p 45245:45245 -p 1885:1885 -p 8885:8885 -p 45345:45345 --name highbyte --mount source=hb_vol,target=/usr/local/highbyte/appData highbyte:X.X.X
Below is a list and description of each of the default ports.
Port | Description |
---|---|
45245 | REST API used for configuration. |
1885 | Internal MQTT Broker. |
8885 | REST data server. |
45345 | MCP server. |
Changes to the ports require the container to be recreated. Changing the ports from the user interface will not change the container ports and may interrupt connections.