Docker image deployments are direct application deployments from an existing container image.
- Uses an image reference and tag as the app source.
- Creates a running workload and service in Kubly.
- Works with public images and private registry images when credentials are available.
- Your image is already built.
- You want to deploy from an external CI/CD pipeline.
- You want a simple first deployment test.
- Image name and tag.
- App listening port.
- Registry credentials for private images.
Screenshot Required
- Create a new application.
- Choose Docker image or image deployment.
- Enter the image reference.
- Set the listening port.
- Configure resources and optional environment variables, secrets, volumes, and scaling.
- Create the deployment.
- Confirm readiness and open the generated URL.
- Using
latest in production without knowing which build it points to.
- Forgetting private registry credentials.
- Using an image that does not contain a web server or long-running process.
- Prefer explicit version tags for releases.
- Use registry pages to confirm the image artifact exists.