GigHive bee gighive

GigHive Parts List (Linux x86-64)

This document outlines the minimum requirements for installing and running GigHive.


✅ Quickstart prerequisites

Use this path if you want the simplest install experience and already have Docker available.

Component Requirement / Notes
CPU/OS Linux x86-64 host
Docker Engine ≥ 24.x
Compose v2 plugin (docker compose version)
Networking Outbound access to download the GigHive bundle and required container images
Ports Local ability to expose 443 for the web app and 3306 if MySQL port exposure matters in your environment
Resources 4 vCPU, 6–8 GB RAM, 30+ GB free disk, depending on library size
Browser A modern browser for initial access and validation

Quickstart notes

Docker and Docker Compose V2 Easy Install on Ubuntu 24.04

# Install docker
sudo apt update
sudo apt install -y docker.io
sudo systemctl enable --now docker
sudo systemctl status docker
docker --version
sudo docker run hello-world

# Install docker-compose-v2
sudo apt install -y docker-compose-v2
docker compose version

# Add your user to the docker group
sudo usermod -aG docker $USER
# Logout, then log back in

🔎 App-specific notes