Deployments
A deployment packages your application, pushes it to your cloud provider’s container registry, provisions infrastructure, and activates the new version. Every deployment produces an immutable container image that can be rolled back to instantly.
Deploy
Section titled “Deploy”ske deploy⠋ Building container image...✓ Image built (42s)⠋ Pushing image to registry...✓ Image pushed (18s)⠋ Uploading assets...✓ Assets uploaded (3s)⠋ Provisioning infrastructure...✓ Infrastructure ready (2m 14s)⠋ Activating...✓ Deployed successfully (3m 17s total)
URL: https://production-my-app.example.ske.devThe deployment pipeline:
- Check Docker — verifies Docker is available locally
- Init — requests registry credentials from the API, syncs
ske.ymlconfiguration - Build — builds a container image using your Dockerfile (auto-generated or custom)
- Push — pushes the image to ECR (AWS) or Artifact Registry (GCP)
- Upload assets — scans your
public/directory and uploads static files for CDN delivery - Confirm — triggers the deployment on the API
- Poll — streams deployment status until it reaches a terminal state
Deployment status
Section titled “Deployment status”ske status Deployment #42 Type: deploy Status: succeeded Initiator: you@example.com Created: 2026-09-20 14:30:00 Duration: 3m 17sListing deployments
Section titled “Listing deployments”ske deploy list ID TYPE STATUS INITIATOR CREATED 42 deploy succeeded you@example.com 2026-09-20 14:30 41 rollback succeeded you@example.com 2026-09-19 09:15 40 deploy succeeded ci@example.com 2026-09-18 16:00 39 deploy failed you@example.com 2026-09-18 15:45Use --limit to control how many results to show:
ske deploy list --limit 5Deployment details
Section titled “Deployment details”ske deploy show 42Shows full deployment details including the build and provisioning output log.
In this section
Section titled “In this section”- Rollbacks — revert to a previous deployment
- Maintenance mode — take an environment offline temporarily
- Build configuration — customize the container build