Download

Self-host HiveGrid

Deploy HiveGrid on your own infrastructure. Full control over your data, complete customization, and no vendor lock-in. Free and open source under the AGPL-3.0 license.

Deployment Options

Choose the deployment method that fits your infrastructure. All options are fully supported and documented.

Recommended
Docker Compose
Recommended for small teams and quick setup. Get running in minutes with Docker Compose.
  • Clone the repository
  • Configure environment variables
  • Run docker-compose up
  • Access at localhost:3000
Enterprise
Kubernetes
Production-ready deployment with Helm charts for scalability and high availability.
  • Install Helm chart
  • Configure values.yaml
  • Deploy to your cluster
  • Set up ingress
Coming Soon
Cloud Providers
One-click deployment to AWS, GCP, DigitalOcean, or Railway.
  • Choose your provider
  • Connect your account
  • Configure resources
  • Deploy automatically

Quick Start with Docker

Get HiveGrid running locally in under 5 minutes.

# Clone the HiveGrid repository
git clone https://github.com/hivegridspace/hivegrid.git
cd hivegrid

# Copy environment variables
cp .env.example .env

# Start all services with Docker Compose
docker-compose -f docker-compose-local.yml up -d

# Run database migrations
docker exec hivegrid-api python manage.py migrate

# Create an admin user (optional)
docker exec -it hivegrid-api python manage.py createsuperuser

# Access HiveGrid at http://localhost:3000

System Requirements

CPU

2+ cores

Recommended for production

RAM

4GB+

8GB recommended for larger teams

Storage

20GB+

SSD recommended for database

Need Help?

Having trouble with your deployment? Check out our documentation or open an issue on GitHub.