Open Source Alternative to Vercel, Netlify, Railway, Render and Neon.
Build, deploy, and run from one open-source platform. Your apps run on your server.
Demo: demo.frost.build
- Open source runtime. No platform markup.
- Git push deploy workflow.
- Docker-native. No Kubernetes setup.
- AI-friendly deploy model with clear logs.
- Unlimited services, deploys, and seats
- Automatic SSL (Let's Encrypt)
- Custom domains and redirects
- PR preview environments
- Zero-downtime deploys and instant rollbacks
- Health checks, resource limits, persistent volumes
- REST API and MCP support for AI agents
- Project: container for related services with shared env vars
- Service: deployable unit from repo or prebuilt image
- Domain: custom domain attached to a service (proxy or redirect)
- Deployment: immutable deploy record with logs and status
Services in one project share a Docker network. Use service name as hostname.
With AI agent:
- Give your agent
https://frost.build/install.md
Manual:
curl -fsSL https://frost.build/install.sh | sudo bashNeed VPS provisioning help: INSTALL.md
Create a project, deploy, then check status:
PROJECT_ID=$(curl -s -X POST http://localhost:3000/api/projects \
-H "Content-Type: application/json" \
-d '{"name":"demo","repo_url":"./test/fixtures/simple-node","port":3000}' | jq -r .id)
DEPLOYMENT_ID=$(curl -s -X POST "http://localhost:3000/api/projects/$PROJECT_ID/deploy" | jq -r '.deploymentIds[0]')
curl "http://localhost:3000/api/deployments/$DEPLOYMENT_ID"- Product docs: https://frost.build/docs
- API docs:
https://<your-frost-host>/api/docs - GitHub repo: https://github.com/elitan/frost
- Bun + Next.js
- SQLite + Kysely
- Tailwind + shadcn/ui
- Docker
bun install
bun run devOpen http://localhost:3000
Common test commands:
bun run e2e:local
bun run e2e:smoke
bun run e2e:changed:fastUseful E2E knobs:
E2E_GROUPS='01-basic,29-mcp' bun run e2e:local
E2E_GROUP_GLOB='group-2*.sh' bun run e2e:local
E2E_BATCH_SIZE=4 E2E_START_STAGGER_SEC=1 bun run e2e:localImage pull retries are built in:
FROST_IMAGE_PULL_RETRIES, FROST_IMAGE_PULL_BACKOFF_MS, FROST_IMAGE_PULL_MAX_BACKOFF_MS.
- VPS/server with Docker
- Ubuntu 20.04+ recommended
MIT