gighiveThis document outlines the minimum requirements for installing and running GigHive.
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 |
# 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