Get HyperAI running on your server in under 5 minutes. You need Docker and a Proxmox server with API access.
One command does everything — downloads config, prompts for your license key, generates secrets, and starts HyperAI:
curl -fsSL https://hyperai.dev/install.sh | bash
The installer will:
docker-compose.yml and generate .envIf you prefer to do it yourself:
Register on our website to get a free license key (HYPR-xxx).
mkdir hyperai && cd hyperai
curl -o docker-compose.yml https://hyperai.dev/install/docker-compose.yml
cat > .env <<EOF
HYPERAI_LICENSE_KEY=HYPR-your-key-here
SESSION_SECRET=$(openssl rand -hex 32)
ANTHROPIC_API_KEY=
EOF
docker compose up -d
Open http://your-server-ip:3000 in your browser.
You need a Proxmox API token. On your Proxmox server:
# SSH into your Proxmox host, then:
pvesh create /access/users/root@pam/token/hyperai --privsep 0
# Output:
# ┌──────────────┬──────────────────────────────────────┐
# │ full-tokenid │ root@pam!hyperai │
# │ value │ xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx │
# └──────────────┴──────────────────────────────────────┘
Back in HyperAI, fill in:
192.168.1.100)8006 (default)root@pam!hyperaipve)Click Test Connection — if it shows a green checkmark, click Save.
Your VMs should now appear in the dashboard. You can:
⌘K to search VMs⌘J to open AI chat (requires Pro + Anthropic key)AI features require a Pro license and an Anthropic API key (BYOK — Bring Your Own Key).
.env file:
ANTHROPIC_API_KEY=sk-ant-api03-your-key-here
docker compose restart hyperai⌘J in the dashboard — try "List all running VMs"docker compose pull
docker compose up -d
Database migrations run automatically on startup. Your data is preserved.
For production, put HyperAI behind a reverse proxy with SSL. Example with Caddy (auto-HTTPS):
# Install Caddy, then create /etc/caddy/Caddyfile:
hyperai.yourdomain.com {
reverse_proxy localhost:3000
}
sudo systemctl restart caddy
Caddy automatically obtains and renews Let's Encrypt certificates.
Update your .env to allow the new origin:
ALLOWED_ORIGINS=https://hyperai.yourdomain.com
Check logs: docker compose logs hyperai
Common issues:
docker compose logs dbcurl -k https://PROXMOX_IP:8006/api2/json/version.env and restart the containerEmail us at support@ll-creative.de — we typically respond within 48 hours (24h for Pro Managed customers).