Dev-first cloud platform that builds,
deploys, runs and manages your apps,
no matter the size or environment

The ideal mix of developer experience,
affordability, flexibility and scalability

Solo to Medium Teams,
Small to Big Projects,
Small to Big Traffic

  • Everything a developer needs out of the box - native support for runtimes, managed databases and storage, environment variables system, logs, health checks, metrics, load balancing, custom domains, automatic SSL and more.
  • No fees for seats, we encourage every developer to be able to have their environment, add as many team members as you need.
  • Unified infrastructure and developer experience for projects of any size, complexity or traffic.

Unified Infrastructure
from Local Development
to Production

  • Custom and efficient Kubernetes-like infrastructure deployed to each project scales from one to millions of requests.
  • All services offered in both high availability and single container setups.
  • The only difference between production and any other environment is the amount of resources — no more "but it works on my machine."
  • CLI with built-in WireGuard VPN unlocking layers of local and remote development on the exact same infrastructure as your production.

Pricing Model that
Doesn't Get in the Way
of Good Development Practices

  • No feature tiers, no fees for seats.
  • Minute-based pricing, always pay only as much as your current load requires.
  • Vertical and horizontal autoscaling with granular steps.
  • Lowest price per resource amongst popular PaaS platforms.

Developer-First Approach

  • Orchestrate your apps on Zerops using CLI, REST API, GUI, and SDKs
  • Create infrastructure templates and spin up new projects easily, simplify onboarding experience of new team members by creating exact copies of production environments in minutes.
  • Built on top of LXC/Incus - full OS Linux containers, offering limitless flexibility.
  • Transparent infrastructure, based on standards and best practices. Little to no vendor lock.
  • Features geared towards golden paths and best development practices.

No better way to try
than with a single click
🚀

Create an example project using the tech you are familiar with. Exploration on easy mode — single click and you can watch Zerops build and deploy a project, and then explore the platform through it. No need to install CLIs, setup configurations, SSH keys and whatnot.

Runtimes

A simple example with read and write to DB.

Frontend frameworks

SSG / SSR examples of popular frameworks.

Backend frameworks & CMS

More complex examples with DB, Redis, storage.

How does Zerops work inside?

Dedicated, robust, and fully managed infrastructure is deployed with each project in Zerops. This infrastructure is what allows Zerops to provide a unified and flexible experience, no matter if you deploy a simple static page or a large setup with multiple databases, storage solutions, and microservices. The same infrastructure is then used for development, production, or any other environment, including those for local and remote development.

Robust infrastructure deployed
with each Zerops project

Project e.g. `zerops-web-prod`
fully managed by Zerops
added by user

Project core
  • A secure, private network (VXLAN, cgroups)
  • L3 balancer with a built-in firewall
  • Logger container with log forwarding
  • Unique IPv6 and IPv4 address support
Routing service
  • Highly available L7 balancer with HTTP routing
  • Unique Zerops subdomain for previews
  • SSL termination and automatic SSL certificates

Services w/ Containers & VMs

  • Native support for all popular runtimes on full OS Linux Containers, no Docker needed
  • Support for VMs and VMs with Docker
  • Managed backups, failovers, healthchecks, repairs, scaling, configration and optimizations for relational, vector, key-value databases, search and queue/messaging engines and storages
  • Optional high availability for all services with internally handled load balancing
  • Fully automatic horizontal and vertical scaling
  • Application Version backups with re-activations
  • Health and readiness checks
api:1337 Node.js
node-id-1.runtime.api.zerops
v2.3.1
node-id-2.runtime.api.zerops
v2.3.1
node-id-3.runtime.api.zerops
v2.3.1
db:5432 PostgreSQL
node-id-1.proxy.db.zerops
Proxy balancer
node-id-2.proxy.db.zerops
Proxy balancer
node-id-1.db.db.zerops
Primary / Write
node-id-2.db.db.zerops
Secondary / Read
node-id-3.db.db.zerops
Secondary / Read
gui:80 Static app
node-id-1.runtime.gui.zerops
v2.0.8
node-id-2.runtime.gui.zerops
v2.0.8

Imported using a simple yaml
or added through the GUI

project: 
  name: zerops-web-prod

services: 
  - hostname: db
    type: postgresql@14
    mode: HA

  - hostname: api
    type: nodejs@18
    envSecrets: 
      ADMIN_JWT_SECRET: Mz2VLQ91E...
      API_TOKEN_SALT: ZPzj+7+x...
      APP_KEYS: uODWOe/gCX+wE...
      JWT_SECRET: x3Ff5VNbU...
    verticalAutoscaling: 
      maxCpu: 1
      minRam: 1
      maxRam: 1
    minContainers: 2

  - hostname: gui
    type: static@1
    verticalAutoscaling: 
      minCpu: 1
      minRam: 0.5
    minContainers: 2

  - hostname: projectinfo
    type: go@1
    envSecrets: 
      ZEROPS_TOKEN: kM8zF3w...
      ZEROPS_PROJECT_ID: 0Hzr60TmQBa0

  - hostname: storage
    type: object-storage
    objectStorageSize: 2

Project can be imported using
a simple yaml or added through the GUI

A Flexible, build, prepare, deploy and run
pipeline with zero-downtime deployments

1

Trigger the pipeline

Automatically, with each commit or release, by connecting the service with your GitHub or GitLab repository

Manually, by using Zerops CLI to trigger the pipeline from your existing CI/CD pipeline or from your local terminal

# install zcli, see docs
# for more install options
~ npm i -g @zerops/zcli
# login using token that can be
# obtained at the token management page
# (needs to be done only once)
~ zcli login PLACE_TOKEN_HERE
# navigate to the root of your project
# (where zerops.yml is) and use push
# command to trigger the pipeline
~ cd ./my-project
my-project zcli push
2

zerops.yml in your repo tells Zerops
how to build and run your app

zerops: 
  - setup: api
    build: 
      base: nodejs@20
      buildCommands: 
        - npm i
        - npm run build
      deployFiles: ./dist
      cache: node_modules
    run: 
      base: nodejs@20
      ports: 
        - port: 1337
          httpSupport: true
      start: npm start
Pipeline NfcOVw...PPUZDA for service zerops-web-prod/api using source from release v3.0.0 of repository zeropsio/web
2 minutes 28 seconds elapsed
Initialized build container
Build commands from zerops.yml ran successfully
Creating app version v3.0.0 and upgrading Node.js service api
3

Containers with new the image
and the new app version are created,
old containers are then removed

api:1337 Node.js
node-id-4.runtime.api.zerops
v3.0.0
node-id-5.runtime.api.zerops
v3.0.0
node-id-6.runtime.api.zerops
v3.0.0
node-id-1.runtime.api.zerops
v2.3.1
node-id-2.runtime.api.zerops
v2.3.1
node-id-3.runtime.api.zerops
v2.3.1

Pricing model that doesn't get in the
way of good development practices

Our vision is a platform with a unified experience you can use for the whole lifecycle of the project, from local development to production. No more "but it works on my machine." For that, we needed a pricing model that doesn't get in the way of good development practices with artificial fees for seats, doesn't hamper the experience with different feature tiers, and is always affordable and transparent no matter how many resources your projects use.

Simple, affordable
and consistent pricing

Lightweight project package

Single-container core services with modest build hours, backup storage, and egress bandwidth included. Ideal for development and smaller production projects.

$0.00 
/
per 30 days
per project

Serious project package

Highly available core services with generous build hours, backup storage, and egress bandwidth included. Perfect for production workloads that mean business.

$10.00
/
per 30 days
per project

Resources used by services inside the project

1x Shared CPU

$0.60/ 30 days
$0.000014/ minute

0.25 GB RAM

$0.75/ 30 days
$0.000017/ minute

0.5 GB Disc

$0.05/ 30 days
$0.00000116/ minute

Along with a granular configurable
autoscaling for each service

Containers
Start with1
Scale Up To6
CPU Cores (shared or dedicated)
Start with1 core
Scale Up To5 cores
RAM
Start with0.25 GB
Scale Up To32 GB
DISK
Start with1 GB
Scale Up To100 GB

How does Zerops pricing compare
with other popular hosting options?

We'll compare a medium-sized real-life production project with a typical setup, and try to configure a similar setup for each provider. When possible, dedicated CPU cores will be used to normalize performance levels, as shared CPUs can have varying overcommit ratios between providers. While this example represents a specific project, pricing trends remain consistent across various project sizes, from smaller to larger projects.

Services6
CPU20 cores
RAM40 GB
Backend
2 nodesLoad balanced, highly available
CPU1 core
RAM2 GB
Disk10 GB
Frontend
2 nodesLoad balanced, highly available
CPU1 core
RAM2 GB
Disk10 GB
Worker
1 node
CPU2 cores
RAM4 GB
Disk10 GB
Database
3 nodesPrimary + Read + Read nodes
CPU4 cores
RAM8 GB
Disk50 GB
Cache
2 nodesRead/write replicas
CPU2 cores
RAM4 GB
Disk10 GB
Storage
Object Storage50 GB
$177per mth.
Coolify+Hetzner
$330per mth.
Zerops
$486per mth.
Fly
$593per mth.
DigitalOcean
$606per mth.
Railway
$661per mth.
AWS (Flightcontrol)
$1023per mth.
Render
$2105per mth.
Heroku

About Zerops

Zerops, originally founded in 2018, began as an internal project at vshosting.eu, one of the largest provider of managed hosting solutions in Central Europe. Following years of extensive development and a brief "stumble", Zerops was acquired by the original development team in 2024 and launched as an independent spin-off, with vshosting / Contabo as a strategic partner, and backed by Presto Ventures and Gi21. Zerops is running on bare metal, the platform is built from ground up, created using Golang, with containers built on top of Incus.

Based in
Re-launched05
2024
Founding team
🙋‍♀️🙋‍♂️🙋‍♂️🙋‍♂️
🙋‍♂️🙋‍♂️🙋‍♂️🙋‍♂️
🙋‍♂️🙋‍♂️🙋‍♂️
Created with

High level roadmap

Done

User triggered backups
Java, Bun, Deno runtimes
Support Cloudflare Full E2E encryption
Managed services for Meilisearch, Qdrant, Kafka, NATS, Elasticsearch, Typesense, ClickHouse
Web shell terminal
Start runtime service without code
VMs / Docker support
Documentation rewrite
Build container remote shell access & pipeline debug options
Build cache refactoring

In progress

Docker set up / prepare pipeline duration optimizations
CDN for static apps, object storage files and GET API calls
Database services improvements (plugins, changing core configurations, optimizations)

Backlog

Service for VMs with GPUs
Migration containers
Pulumi support
HTTP routing improvements (caching, support for wildcards)
OpenTelemetry (statistics forwarding)
Secured public access to databases from outside the project
Auto start/stop
New auth system with granular permissions
New notification system with ability subscribe / unsubscribe to projects and multiple channels (slack, discord, mail, webhook)
US-east, Singapore region support

What are we up to