Deploy Docker apps. Simply.
- Deploy any repo with a Dockerfile
- Web UI for managing projects
- Build logs and deployment status
- Auto-assigns ports (10000-20000 range)
- Next.js + Bun
- SQLite + Kysely
- Tailwind + shadcn/ui
- Docker
Need a server? See INSTALL.md for AI-assisted VPS provisioning.
Already have a server?
curl -fsSL https://frost.build/install.sh | sudo bashbun install
bun run dev- Create a project (provide repo URL, branch, port)
- Click Deploy
- Access your app at the assigned port
# Create project
curl -X POST localhost:3000/api/projects \
-H "Content-Type: application/json" \
-d '{"name":"myapp","repo_url":"https://github.com/user/repo","port":3000}'
# Deploy
curl -X POST localhost:3000/api/projects/{id}/deploy
# Get deployment status
curl localhost:3000/api/deployments/{id}- Bun
- Docker
MIT