Documentation

Serverize facilitates the creation of development, testing, and preview environments, each tailored to empower different phases of the product lifecycle without unnecessary complexity. It uses Docker to package your application and deploy it to a unique URL, allowing you to share your work with others or test it in a production-like environment.

The simplest way to get started is with our zero-config deployment:

npx serverize

Serverize will automatically detect your framework and set up the appropriate configuration. If it can’t detect your framework, it will prompt you to choose one.

Or tell it where your Dockerfile is:

npx serverize -f ./Dockerfile

Or deploy an existing local image:

docker pull docker/example-voting-app-vote
npx serverize --image docker/image-that-exposes-http-port

Core Concepts

Deployment

CLI Reference

Manage your deployments using our CLI:

Need Help?