Ravel, our microVMs orchestrator, is live on GitHub. Feel free to let a star.
Valyent is now available in a public technical preview!

Deploy Docker containers
at scale.

Valyent turns Docker images into fast-booting microVMs
and orchestrates them at scale.

CLI-based deployments

Start deploying from the comfort of your terminal.

Terminal

# Install Valyent's CLI tool.
$ curl -L https://cli.valyent.cloud | sh
# Authenticate the CLI.
$ valyent auth login
# Initialize Valyent in your project.
$ valyent init
# Deploy your application.
$ valyent deploy

GitHub-based deployments

Push a commit to trigger a new deployment.

Terminal

# Add files to commit.
$ git add .
# Create a new commit.
$ git commit -m "..."
# Push commit to your GitHub repository.
$ git push

Infrastructure-as-Code

It fits right into your code with SDKs for your favorite programming languages.

// npm install valyent.ts
import { createClient } from "valyent.ts"

// Create a client with your API key
const client = new Client("<API_KEY>")

// Create a new fleet
const fleet = await client.fleets.create({
  name: '<FLEET_NAME>',
})
    
// Create a new machine in the fleet
await client.machines.create(fleet.id, {
  region: 'gra-1',
  config: {
    image: '<DOCKER_IMAGE>',
    guest: {/* ... */},
    workload: {/* ... */},
  },
})

An easy-to-use REST API

Our REST API provides programmatic access to all Valyent features.
Here are examples of endpoints:

Deploy it with Valyent

From code to cloud: simplify, scale, and soar.

Open-Source

Ravel, our microVMs orchestrator,
is made open-source with an Apache 2.0 license.

Let a Star

Community

Valyent's community is gathering on Discord, so feel free to come and chat with us!

Join The Community

Documentation

Check out the documentation, for more information on how to integrate Valyent in your projects.

Read The Documentation