# Docker Quickstart

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

- **Category**: Start Here
- **Last Verified**: 2026-07-14

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:

```bash
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:

```bash
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:

```bash
kubeletto doctor hello-nginx
```

