gcloud run deploy web-app --image gcr.io/my-project-123456/web-app:v1 --region us-central1 --allow-unauthenticated
Deploy a container to Cloud Run
Pushes the container image gcr.io/my-project-123456/web-app:v1 live as a serverless service that scales to zero when idle. --allow-unauthenticated makes the service reachable by anyone with the URL; drop it to require Google identity. Each deploy creates a new revision and shifts traffic to it.
Looking for more? Search all 7,657 commands — works offline, in English or Spanish, and fixes typos.