Start Here·Last Verified: 2026-07-14

Docker Quickstart

Deploy your first public container image to a secure HTTPS url in under a minute.

Deploying a pre-built container image is the fastest golden path on Kubeletto. Let's deploy a verified hello-world web server image.

Deployment Steps

Use the kubeletto deploy command, providing a unique service name and a tested, responsive container image. We will use Nginx Alpine on port 80:

Deploy Image
kubeletto deploy hello-nginx --image nginx:alpine --port 80 --wait

Verify the Deployment

Once the command exits, Kubeletto will return a secure endpoint URL. Test it with curl:

Test URL
curl -I https://hello-nginx.kubeletto.app

Troubleshooting a Failed Deployment

If your deployment fails to start or remains stuck, run the diagnostic doctor command immediately to verify state:

Check Diagnostics
kubeletto doctor hello-nginx
Was this helpful?