Self-hosting on Hostinger
1. Create the server
In hpanel → VPS → choose KVM 2 (2 vCPU / 8 GB RAM / 100 GB — ~₹549/mo, comfortably above spec) → pick Ubuntu 24.04 → set a root password/SSH key. Hostinger provisions in a couple of minutes; note the server IP.
2. Point your domain
Add an A record for pms.yourhotel.com → the server's IP at your DNS provider. (If you use Cloudflare, set it to DNS only while issuing the SSL certificate.)
3. Install Docker
bash
ssh root@<server-ip>
curl -fsSL https://get.docker.com | sh4. Install Kamra
From here it's identical everywhere — follow the Quickstart: build the image with Kamra in apps.json, bring the compose stack up, create your site, enable the scheduler.
5. SSL
bash
apt install -y certbot python3-certbot-nginx
certbot --nginx -d pms.yourhotel.comThen work through the production checklist.