How-To: Install Intelligence Hub Docker Image on Linux
This article provides install instructions on how to install Docker and the Intelligence Hub Docker image on a Linux operating system.
What Does This Article Cover?
This article provides set of instructions needed to install your Intelligence Hub Docker image onto a Linux host operating system. Linux is chosen as the host operating system as it is a preferred platform for deploying Docker containers into production environments. Linux for Docker is a straightforward installation process and can be setup within 10 minutes.
Installation Video:
Linux Commands:
Here is a list of Linux commands used in the video.
https://docs.docker.com/engine/install/ubuntu/Other Related Material:
sudo docker load -i "HighByte-Intelligence-Hub-4.0.1_Docker_Build_2024.11.5.4.tar"
sudo mkdir localAppData
sudo chmod -R 777 localAppData
sudo docker run --name highbyte --mount type=bind,source=/home/highbyte/localAppData,target=/usr/local/highbyte/appData --net=host highbyte:4.0.1
sudo docker start highbyte
sudo docker stop highbyte
sudo docker rm highbyte
mddir docker-compose
cd docker-compose
touch docker-compose.yml
services:
highbyte:
image: highbyte:4.0.1
container_name: highbyte
volumes:
- /home/highbyte/localAppData:/usr/local/highbyte/appData
network_mode: host
restart: always
sudo docker compose create
sudo docker compose start