Published 2026-04-10 · Not yet reviewed · Figures compiled 2026-04-10, not re-checked since · 7 AWS pricing changes tracked
0 days
until App Runner closes to new customers
April 30, 2026 · AWS stability: WATCH
0
Days Remaining
10
Alternatives Compared
9
With Free Tiers
3
Migration Paths
What’s happening: AWS App Runner will stop accepting new customers on April 30, 2026. The service has entered maintenance mode with no new features planned. Existing services continue to run, but AWS officially recommends migrating to Amazon ECS Express Mode.
AWS’s recommendation:ECS Express Mode provides a simplified ECS experience designed to replace App Runner. It supports auto-scaling, managed networking, and integration with ECR. The key difference: ECS Express Mode requires container images — it does not support App Runner’s source code deployment.
Free alternatives exist: If you want to leave AWS, Google Cloud Run (2M requests/mo free, scale to zero), Fly.io (3 free VMs), and Render (free tier with 750 hrs/mo) all offer container deployment with free tiers and source code deployment support.
Key dates for the App Runner deprecation. Existing services continue, but plan your migration.
Date
Event
Impact
Apr 2026
AWS announces App Runner will stop accepting new customers. Service enters maintenance mode. ECS Express Mode recommended as replacement.
HIGH
Apr 30, 2026
New customer cutoff. No new App Runner services can be created by new accounts. Existing customers can continue deploying.
HIGH
Post-cutoff
Existing services continue to run. Updates and deployments allowed for current customers. No new features will be added to App Runner.
MEDIUM
TBD
AWS has not announced a final shutdown date for existing services. However, maintenance mode typically precedes full deprecation. Plan migration proactively.
INFO
What’s NOT affected (yet): Existing App Runner services continue to run after April 30. You can still deploy updates and new versions to existing services. The key concern is long-term viability — with no new features and maintenance mode status, App Runner’s future is limited. Plan your migration timeline accordingly.
Container Deployment Alternatives
All 10 alternatives compared. Migration effort rated from the perspective of an App Runner integration.
Source code deploy matters: One of App Runner’s key features was deploying directly from source code (GitHub) without building a Docker image. ECS Express Mode does not support this — you must provide a container image. If source code deployment is important to your workflow, consider Railway, Render, Google Cloud Run, or DigitalOcean App Platform, all of which support auto-deploy from GitHub.
Pricing Comparison
Monthly cost comparison across alternatives. App Runner pricing shown for reference.
Provider
Free Tier
Typical Monthly Cost
Scaling Model
App Runner (closing)
None for new customers
From $5/mo (1 vCPU, 2GB)
Per-request auto-scaling
ECS Express Mode (Fargate)
AWS Free Tier (limited)
~$30/mo (0.5 vCPU, 1GB 24/7)
Per-second, service auto-scaling
Google Cloud Run
2M req + 360K vCPU-sec/mo
Pay-per-use (scale to zero)
Per-request, scale to zero
Azure Container Apps
180K vCPU-sec/mo
Pay-per-use (scale to zero)
Per-second, KEDA events
Railway
$5/mo credit (trial)
From $5/mo + usage
Per-minute, horizontal
Render
750 hrs/mo (sleeps)
From $7/mo (Starter)
Fixed + auto-scaling (paid)
Fly.io
3 shared VMs free
From $1.94/mo per VM
Per-VM, multi-region
DigitalOcean App Platform
Static sites free
From $5/mo (Basic)
Fixed monthly per app
Scale-to-zero advantage: Google Cloud Run and Azure Container Apps can scale to zero — you pay nothing when there’s no traffic. App Runner supported auto-scaling but not true scale-to-zero (minimum provisioned instances were always billed). This makes Cloud Run and Container Apps significantly cheaper for low-traffic or intermittent workloads.
Migration Paths
Three paths depending on your cloud strategy. The right choice depends on whether you want to stay on AWS, go multi-cloud, or use a developer PaaS.
Path 1: Stay on AWS (ECS Express Mode)
AWS’s official recommendation. ECS Express Mode simplifies container deployment on ECS with managed networking and auto-scaling. Your ECR images, IAM roles, VPC config, and CloudWatch logs continue to work. The main change: you must containerize your app if you used App Runner’s source code deployment — ECS Express Mode requires container images.
Best for: Teams invested in AWS ecosystem, using ECR, IAM, and other AWS services
Google Cloud Run and Azure Container Apps offer the closest experience to App Runner — fully managed, auto-scaling, and pay-per-use with generous free tiers. Both support source code deployment and scale-to-zero, which App Runner didn’t offer. Cloud Run’s 2M free requests/month makes it the strongest free tier option.
Best for: Cost-sensitive workloads, intermittent traffic, multi-cloud strategy
Path 3: Developer PaaS (Railway, Render, Fly.io)
Developer-focused platforms with the simplest deployment experience. Push to GitHub, get a running service. Railway and Render offer the closest DX to App Runner’s source code deploy. Fly.io excels at multi-region deployment. All have free tiers or trial credits to get started.
Best for: Fast deployment, great DX, small teams, side projects
Migration Considerations
Key differences to evaluate when choosing your migration target.
Source Code vs. Container Image Deployment
App Runner supported both source code (auto-built by AWS) and container image deployment. ECS Express Mode only supports container images. If your team doesn’t maintain Dockerfiles, consider adding a build step (GitHub Actions, AWS CodeBuild) or choose a platform that builds from source (Cloud Run, Railway, Render).
Custom Domain Migration
Custom domains configured in App Runner need to be reconfigured on your new platform. Update DNS records (CNAME or A records) to point to your new provider. Most platforms provide managed TLS certificates via Let’s Encrypt. Plan for a brief DNS propagation period.
Auto-Scaling Differences
App Runner scaled based on concurrent requests. ECS Express Mode uses ECS Service Auto Scaling (CPU/memory-based). Cloud Run and Container Apps support request-based scaling AND scale-to-zero. Railway and Render offer auto-scaling on paid plans. Consider your scaling triggers when migrating.
Cold Start Behavior
App Runner had configurable provisioned concurrency to minimize cold starts. On Cloud Run and Container Apps, cold starts occur when scaling from zero. Fly.io keeps VMs warm by default. Railway and Render keep services running continuously on paid plans. Factor cold start requirements into your decision.
VPC and Networking
If your App Runner service connected to VPC resources (RDS, ElastiCache), staying on AWS (ECS Express Mode or Fargate) preserves those network connections. Moving to another cloud requires exposing those resources publicly or setting up VPN/peering — a significant migration consideration for data-heavy applications.
Migration Examples
App Runner to ECS Express Mode (AWS CLI)
If your App Runner service uses ECR, the ECS migration is straightforward:
Deploy from source code or container image with a single command:
# Deploy from source code (like App Runner source deploy)
gcloud run deploy my-app \
--source . \
--region us-central1 \
--allow-unauthenticated
# Or deploy from container image
gcloud run deploy my-app \
--image gcr.io/my-project/my-app:latest \
--region us-central1 \
--allow-unauthenticated \
--min-instances 0 \
--max-instances 10
App Runner to Railway
The simplest migration — connect your GitHub repo and deploy:
# Install Railway CLI
npm install -g @railway/cli
# Login and initialize
railway login
railway init
# Deploy from current directory
railway up
# Or connect GitHub repo for auto-deploy# (done via Railway dashboard — push to main = auto deploy)
Dockerfile optional: Railway, Render, and Google Cloud Run all support deploying without a Dockerfile — they auto-detect your language and build accordingly using buildpacks (Nixpacks on Railway, Heroku buildpacks on Render, Google Cloud buildpacks on Cloud Run). This matches App Runner’s source code deployment experience.
Frequently Asked Questions
When does AWS App Runner shut down?▼
AWS App Runner stops accepting new customers on April 30, 2026. Existing customers can continue using the service, but it has entered maintenance mode with no new features planned. AWS has not announced a final shutdown date for existing services, but recommends migrating to Amazon ECS Express Mode.
What is ECS Express Mode and how does it replace App Runner?▼
ECS Express Mode is AWS's recommended migration path. It simplifies Amazon ECS by providing a streamlined container deployment experience similar to App Runner — easier configuration, managed networking, and automatic scaling — while giving you access to the full ECS ecosystem. The main difference is that ECS Express Mode only supports container images (no source code deploy), so you'll need to build your container first.
Can I still use App Runner if I'm already a customer?▼
Yes. Existing App Runner services will continue to run after April 30, 2026. You can update existing services and deploy new versions. However, the service is in maintenance mode — no new features will be added, and AWS strongly recommends planning a migration.
What are the best free alternatives to App Runner?▼
Google Cloud Run offers the most generous free tier (2 million requests/month, 360K vCPU-seconds, scale to zero). Fly.io provides 3 free shared VMs. Render has a free tier with 750 hours/month (services sleep after inactivity). Azure Container Apps offers 180K vCPU-seconds/month free. For AWS-native options, Elastic Beanstalk has no management fee — you only pay for underlying resources.
Which alternative supports source code deployment like App Runner?▼
App Runner's source code deployment (push code, AWS builds the container) is available on: Google Cloud Run (Cloud Build + buildpacks), Railway (GitHub auto-deploy), Render (GitHub auto-deploy), Fly.io (Dockerfiles + buildpacks), DigitalOcean App Platform (GitHub/GitLab auto-deploy), Azure Container Apps (source code via buildpacks), Elastic Beanstalk (source bundles + Dockerfiles), and Northflank (buildpacks + Dockerfiles). ECS Express Mode does NOT support source code deploy — you must provide a container image.
AWS Proton end of support. Infrastructure-as-code provisioning service being retired. All environments, services, and templates will stop working.
MEDIUM
Sep 30, 2026
AWS App Mesh end of support. Service mesh for ECS/EKS being fully retired. All configurations, virtual nodes, and routes will stop functioning.
MEDIUM
Jun 30, 2026
AWS Fargate Platform Version 1.3.0 end of support. Tasks on PV 1.3.0 will stop running. Migration to Platform Version 1.4.0+ required.
MEDIUM
Apr 30, 2026
AWS App Runner closed to new customers. Service enters maintenance mode with no new features. AWS recommends migrating to Amazon ECS Express Mode for simplified container deployment.
HIGH
Apr 30, 2026
Node.js 20 AWS Lambda runtime 3-phase deprecation begins. Phase 1 (April 30): no new function creation. Phase 2 (June 30): no function updates. Phase 3 (August 30): no invocations.
HIGH
Apr 20, 2026
AWS WorkSpaces Thin Client end of availability. AWS stopping sales of Thin Client devices. Existing devices continue working but no new hardware can be purchased.
LOW
Jan 4, 2026
EC2 Capacity Blocks for ML GPU prices increased ~15% across regions. p5e.48xlarge went from $34.61 to $39.80/hr (US East) and $43.26 to $49.75/hr (US West N. California)
MEDIUM
Recommendations
Best Alternative for Each Use Case
Staying on AWS (recommended for AWS-heavy stacks):
ECS Express Mode — AWS’s official replacement. Keeps your ECR images, IAM roles, VPC connections, and CloudWatch monitoring. Requires container images (no source code deploy).
Best free tier:
Google Cloud Run — 2M requests/month, 360K vCPU-seconds, scale to zero. The most generous free tier for container workloads. Source code deployment supported via buildpacks.
Closest App Runner experience:
Render — similar DX with GitHub auto-deploy, managed TLS, and simple dashboard. Free tier available (750 hrs/mo, services sleep after inactivity). Paid plans start at $7/mo.
Best developer experience:
Railway — push to deploy with zero config. $5/mo free trial credit. Auto-detects language and builds without Dockerfiles. Closest to App Runner’s simplicity.
Multi-region deployment:
Fly.io — deploy to multiple regions with a single config. 3 free shared VMs. Scale to zero supported. Ideal for latency-sensitive applications serving global users.
Full PaaS with CI/CD:
Northflank — built-in CI/CD pipelines, buildpacks, preview environments. Free tier with 2 services. Good for teams that want a complete platform, not just deployment.
Event-driven scaling:
Azure Container Apps — KEDA-based auto-scaling that responds to events (queues, HTTP, custom metrics). 180K vCPU-seconds/month free. Best for event-driven architectures.
AWS source code deploy replacement:
Elastic Beanstalk — if you need to stay on AWS with source code deployment, Beanstalk supports source bundles and Dockerfiles. No management fee — pay only for underlying EC2/RDS resources.
Methodology
How we track this data: AgentDeals monitors free tier changes across 1,580 developer tools in 66 categories. The App Runner deprecation is tracked in our shutdown tracker and stability dashboard.
Migration recommendations: Based on official AWS documentation, provider pricing pages, and community migration reports. Free tier availability confirmed against official documentation as of 2026-04-10. Pricing data verified across all 10 alternatives.
Best Free LLM APIs in 2026— 25+ free LLM API providers compared — proprietary model APIs, open-model inference platforms, and AI gateways with exact rate limits
Best Free API Development Tools in 2026— 39+ free API development tools compared — REST/GraphQL clients, mocking, documentation, marketplaces, and integration platforms
The Complete Free Startup Stack for 2026— Complete free SaaS infrastructure stack — 10 categories with recommended picks, scaling guidance, and stability ratings
The Complete Free AI/ML Stack for 2026— Complete free AI/ML development stack — 10 categories with recommended picks, scaling guidance, and stability ratings
The Complete Free DevOps Stack for 2026— Complete free DevOps infrastructure stack — 10 categories with recommended picks, scaling guidance, and stability ratings
The Complete Free Frontend Stack for 2026— Complete free frontend/Jamstack development stack — 10 categories with recommended picks, scaling guidance, and stability ratings
The Complete Free Next.js Stack for 2026— Complete free Next.js full-stack infrastructure — 10 layers with recommended picks, growth cost analysis, and stability ratings
Vercel vs Netlify Free Tier Comparison— Deep comparison of Vercel and Netlify free tiers — bandwidth, functions, builds, commercial use, and scaling costs
Neon vs Supabase Free Tier Comparison— Deep comparison of Neon and Supabase free tiers — database-only vs full platform, branching, auth, storage, and scaling costs
Railway vs Render Free Tier Comparison— Deep comparison of Railway and Render free tiers — usage-based vs fixed pricing, databases, sleep behavior, and scaling costs
Datadog vs New Relic Free Tier Comparison— Deep comparison of Datadog and New Relic free tiers — per-host vs per-GB pricing, APM, logs, synthetics, and scaling costs
Gemini API Pricing 2026— Gemini API billing guide — spend caps ($250-$100K+/mo), prepaid billing, 3.1 Pro paid-only, free tier changes, 8-provider comparison
Google Gemini API Pricing Overhaul Guide— Gemini API pricing overhaul guide — before/after limits, cost analysis by usage tier, 11 LLM alternatives, migration recommendations by use case
Free Tier Tracker— Q1 2026 free tier erosion report — which developer free tiers were removed, reduced, or expanded
Startup Credits Comparison 2026— The definitive startup credits comparison — 15+ programs across cloud infrastructure, fintech, and developer tools with eligibility requirements, vesting schedules, and stacking strategies
AI Coding Tools Pricing Guide— AI coding tools pricing comparison — free tiers, pro plans, power tiers, and recent March 2026 pricing changes
AI Coding Tools Pricing Comparison 2026— The definitive AI coding tools comparison — 17 tools across IDE, CLI, cloud agent, and app builder categories with free tier analysis and cost breakdowns
CI/CD Tools Pricing Comparison 2026— The definitive CI/CD pricing comparison — 17+ tools across general, cloud-native, mobile, and self-hosted categories with free tier analysis and cost breakdowns
Database Pricing Comparison 2026— The definitive database pricing comparison — 25+ services across managed Postgres, serverless/edge, document/NoSQL, cloud provider, and specialized categories with free tier analysis and cost breakdowns
Vector Database Pricing Comparison 2026— The definitive vector database pricing comparison — 11 services across dedicated cloud, open-source, pgvector, embedded, and serverless categories with free tier analysis for RAG/AI
Cloud Hosting & PaaS Pricing Comparison 2026— The definitive cloud hosting pricing comparison — 15 platforms across PaaS, edge/serverless, full-featured, and static categories with free tier analysis, pricing gotchas, and Railway referral
LLM API Pricing Comparison 2026— The definitive LLM API pricing comparison — 20+ providers across frontier labs, inference providers, open-source hosts, and specialized services with free tier analysis and token cost breakdowns
AWS Free Tier Complete Guide 2026— Complete AWS free tier guide — every free service, real limits, hidden costs, and Aurora PostgreSQL Serverless (new March 2026)
GCP Free Tier Complete Guide 2026— Complete GCP free tier guide — 30+ always-free products, $300 trial, hidden costs, and comparison with AWS and Azure
Azure Free Tier Complete Guide 2026— Complete Azure free tier guide — 65+ always-free services, $200 trial, Cosmos DB lifetime free tier, and comparison with AWS and GCP
DigitalOcean Free Tier Complete Guide 2026— Complete DigitalOcean guide — $200 free credits, 20% Droplet price cuts, App Platform free tier, per-second billing, and Big Three comparison
Cloud Free Tier Comparison 2026— Side-by-side comparison of AWS, GCP, Azure, and DigitalOcean free tiers — compute, databases, serverless, storage, startup credits, and hidden costs
Serverless Free Tier Comparison 2026— Side-by-side comparison of 10+ serverless free tiers — invocations, compute time, cold starts, billing models, and hidden costs compared
Auth & Identity Comparison 2026— Side-by-side comparison of 20+ auth free tiers — MAU/MRU limits, SSO, M2M tokens, agentic AI auth, self-hosted options, and growth cost traps
Monitoring & Observability Comparison 2026— Side-by-side comparison of 25+ monitoring free tiers — data ingest, retention, APM, error tracking, uptime, and the observability cost trap at 10 to 500 hosts
Email & Transactional Messaging Comparison 2026— Side-by-side comparison of 20+ email free tiers — SendGrid exodus migration guide, transactional vs marketing breakdown, growth cost at 10K-1M emails/month, deliverability traps
Storage & CDN Comparison 2026— Side-by-side comparison of 15+ storage and CDN free tiers — S3 egress tax breakdown, zero-egress providers, media CDN, self-hosted options, and scaling costs at 100GB/1TB/10TB/100TB
Testing & QA Tools Free Tier Comparison 2026— Side-by-side comparison of 15+ testing tool free tiers — E2E, visual regression, load testing, API testing, local dev, and the testing cost trap at scale
API Development Tools Free Tier Comparison 2026— Side-by-side comparison of 12+ API development tool free tiers — users, collections, requests, mock servers, local-first vs cloud, and the API tool migration trap
Hosting & PaaS Free Tier Comparison 2026— Side-by-side comparison of 12+ hosting free tiers — bandwidth, compute, build minutes, cold starts, commercial use restrictions, and the hosting cost trap at scale
Developer Security Tools Free Tier Comparison 2026— Side-by-side comparison of 20+ developer security tool free tiers — SAST, SCA, DAST, secrets detection, container security, and the DevSecOps cost trap at scale
State of Developer Free Tiers 2026— Data-driven analysis of 1,580 developer tool free tiers across 66 categories — trends, risks, and recommendations
OpenAI Assistants API Sunset— OpenAI Assistants API sunset August 2026 — migration paths, free AI API alternatives, and cost comparison
Firebase Studio Shutdown Guide— Firebase Studio shutdown guide — free cloud IDE alternatives with compute hours, storage, and collaboration limits compared
Developer Tool Shutdown Tracker 2026— Living tracker of developer tool shutdowns, API sunsets, and deprecation deadlines in 2026 — with migration paths and alternatives
Track cloud service deprecations and compare container deployment free tiers from your AI assistant. Get stability ratings, migration alerts, and pricing comparisons — directly in your editor.
claude mcp add agentdeals -- npx -y agentdeals
Works with Claude Desktop, Cursor, Cline, Windsurf → Full setup guide