DigitalOcean is a cloud infrastructure provider built by DigitalOcean Inc., ranking #29 in developer tool usage at roughly 10.7%. It offers a much simpler, flatter-priced alternative to AWS/Azure/GCP โ a small, understandable catalog of services (Droplets, managed databases, App Platform) instead of hundreds of overlapping products. That simplicity is why it's a common first choice for hosting a side project, startup MVP, or small team's infrastructure.
DigitalOcean's official CLI, doctl, lets you spin up a virtual server ("Droplet") in one command.
# create a new $6/mo Ubuntu droplet in the NYC1 region
doctl compute droplet create my-app-server \
--region nyc1 \
--image ubuntu-22-04-x64 \
--size s-1vcpu-1gb \
--ssh-keys 1234567
# list your running droplets
doctl compute droplet list
Create a free DigitalOcean account, then install the doctl CLI and authenticate with an API token.
# install doctl (macOS via Homebrew)
brew install doctl
# authenticate with your API token
doctl auth init