Run a VM in under a minute
- Fund your wallet. Top up Drocoin so the first hour can be debited.
- Choose a plan. Open DRO Cloud and pick a size from the catalogue.
- Provision. Give the VM a name and OS image, then submit.
- Wait ~60s. Status goes Provisioning → Active and an IP is allocated.
- Connect. SSH in with your key, or use the browser console.
Deploy a container (developers)
If you prefer declarative container compute, one authenticated call creates a tenant container; the platform places and runs it for you:
curl -X POST https://<your-host>/api/v2/compute/ \
-H "Authorization: Bearer $DRO_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "web",
"host_key": "mia-1",
"repository": "nginx",
"tag": "stable",
"cpu_limit": "1.0",
"mem_limit": "512m"
}'
See the API Reference for the full surface.