Azure Container Apps Express: The Agent-First Platform You've Been Waiting For Microsoft's Azure Container Apps Express, now in public preview, introduces a new environment tier that eliminates manual provisioning, networking configuration, and scaling rules for container deployments, reducing startup time from minutes to seconds. The platform, built on ACA Sandboxes with prewarmed pools, targets developers shipping fast and AI agents that deploy endpoints on demand, supporting scale-from-zero with subsecond cold starts. Separately, Docker Compose for Agents enables deployment of GPU model serving and multi-service stacks to standard ACA environments, covering the full spectrum of agent deployment on Azure. I've been running AI workloads on Azure Container Apps for over a year. Every time I spin up a new agent backend, the ritual is the same: create an environment, configure networking, set scaling rules, wire up health probes, then deploy the actual container. For a prototype agent that might live for a week, that's too much ceremony for what you get. ACA Express, which hit public preview in May 2026, kills most of that ceremony. And a separate but related announcement, Docker Compose for Agents, brings MCP gateways and model serving to standard ACA environments. They solve different problems and run on different infrastructure, but together they cover the full spectrum of agent deployment on Azure. Let me break down both. Express is a new environment tier within Azure Container Apps. You bring a container image. Express handles provisioning, HTTPS, scaling including scale-from-zero with subsecond cold starts , and resource allocation. No environment to manually provision through the portal. No networking to configure. No scaling rules to write. Under the hood, Express is built on ACA Sandboxes, a platform primitive that uses prewarmed pools to deliver that subsecond startup. This isn't the standard ACA cold-start experience with a fresh coat of paint. It's a different architecture. The tradeoffs are real. Express is HTTP workloads only, consumption CPU only. No GPU. No VNet integration. No Dapr. No service discovery between apps. No managed identity at runtime. No health probes. If you need any of those, standard ACA environments are still there. But for stateless HTTP agent backends, Express is dramatically faster to deploy and cheaper to run. Here's what it takes to get a container running: Create an express environment az containerapp env create \ --name my-express-env \ --resource-group rg-my-agents \ --environment-mode express \ --logs-destination none Deploy your app az containerapp create \ --name my-agent-api \ --resource-group rg-my-agents \ --environment my-express-env \ --image mcr.microsoft.com/k8se/quickstart:latest \ --target-port 80 \ --ingress external \ --min-replicas 0 \ --max-replicas 1 Your app is running in seconds. Not minutes. Seconds. Express also has its own portal experience at containerapps.azure.com https://containerapps.azure.com , separate from the Azure portal. If you're using the portal, you don't even need to create the environment yourself. It handles that automatically. Microsoft is explicitly positioning Express for two audiences: developers who want to ship fast, and AI agents that deploy endpoints on demand. That second audience is the interesting one. Think about how modern agent architectures work. An orchestrator spins up tool-use APIs, runs them for the duration of a task, and tears them down. The infrastructure needs to provision fast, scale from zero, and cost nothing when idle. That's exactly the Express model. The platform is designed for MCP servers, tool-use endpoints, multi-step workflow APIs, and human-in-the-loop UIs that agents spin up dynamically. Scale-from-zero with subsecond cold starts means you're not paying for agent backends that aren't actively serving requests. And when a request does come in, the agent is ready almost instantly instead of waiting through a cold start. Here's where a lot of early coverage got confused, and where I got it wrong in my first draft of this post. Docker Compose for Agents is not an Express feature. It deploys to standard ACA environments with workload profiles, not to Express. Why? Because Compose for Agents supports GPU model serving, MCP gateway containers, sidecar processes, and multi-service stacks. All of those require capabilities that Express doesn't have workload profiles, service discovery, sidecars . Different tool for a different job. What Compose for Agents does is let you take the same compose.yml you use locally for development and deploy it directly to ACA. The CLI translates compose services into Container Apps resources automatically. Here's what a compose file looks like for an agent stack: services: my-agent-app: build: . ports: - "8080:8080" environment: - MCP GATEWAY URL=${MCP GATEWAY URL} mcp-gateway: image: docker/mcp-gateway x-azure-deployment: image: acateam.azurecr.io/preview-ai-compose/mcp-gateway:latest models: gemma: model: ai/gemma3-qat x-azure-deployment: workloadProfiles: workloadProfileType: Consumption-GPU-NC8as-T4 The x-azure-deployment directive is the bridge between local and cloud. Docker ignores it locally. ACA uses it during deployment. Same file, both environments. What the CLI creates behind the scenes: Your agent app as a Container App with ingress. An MCP gateway running as its own Container App with managed identity, dynamically managing MCP tool containers. Model serving via Docker's model runner on serverless GPU. The MCP gateway handles stdio-to-SSE translation, so your MCP servers run as standard Container Apps without modification. To deploy it: Install the preview CLI extension az extension remove --name containerapp az extension add --source "