Docker extends Compose for agentic apps — Compose + Docker Offload + MCP for production AI
Key update
Docker announced that Compose can now describe and run "agentic" applications (agents, models, and tools) as first-class services, added Docker Offload to transparently move GPU/ML workloads from local machines to cloud backends, and introduced Model Context Protocol (MCP) tooling (Model Runner, MCP Gateway, provider services) to discover and securely wire external tools and models into Compose-defined stacks. (docker.com)
Why it matters
This is not a marketing tweak — it changes the developer-to-production path for AI work. Teams can reuse one Compose file from local development through cloud deployment, orchestrate multi-agent architectures without bespoke scripts, and avoid local GPU limits by offloading heavy inference to cloud instances without rewriting workflows. Operationally, it centralizes agent lifecycle management (versioned images, provider services, MCP tool manifests) into familiar Docker tooling, which reduces prototype-to-prod friction but also introduces new security and compliance responsibilities (MCP trust boundaries, secret management, and offload governance). Short-term practical steps: test Compose provider services on a staging project, evaluate Docker Offload costs and latency for your models, and treat MCP endpoints as high-risk integration points in audits and CI/CD pipelines. (docker.com)
Source
Read Next
TypeScript's native Go port (Project Corsa) delivers ~10× type-check speedups
November 29, 2025Microsoft's TypeScript team has ported the compiler and language service to Go (Project Corsa), producing large, real-world speed and memory improvements and shipping native previews for early testing.
Node.js marks built-in TypeScript type‑stripping stable (v25.2.0)
November 28, 2025Node.js v25.2.0 (Nov 11, 2025) promotes runtime TypeScript 'type stripping' to stable — run many .ts files with node directly, with important practical caveats.
Docker patches critical RCE in nested dependency, upstreams fix to LangChain.js
November 27, 2025Docker found and fixed a critical RCE (CVE-2025-12735) rooted in the expr-eval dependency, replaced it with a maintained alternative, and contributed the fix upstream to LangChain.js—affecting Kibana and many LLM apps.