Esta página se muestra en inglés. Una traducción al español está en curso.
ScriptsMay 11, 2026·2 min de lectura

Docker Agent — Run Agent Tasks in Containers

Docker Agent packages agent workloads into containers so you get reproducible environments, clear boundaries, and safer runs than ad-hoc local scripts.

Listo para agents

Este activo puede ser leído e instalado directamente por agents

TokRepo expone un comando CLI universal, contrato de instalación, metadata JSON, plan según adaptador y contenido raw para que los agents evalúen compatibilidad, riesgo y próximos pasos.

Stage only · 29/100Stage only
Superficie agent
Cualquier agent MCP/CLI
Tipo
Script
Instalación
Single
Confianza
Confianza: Established
Entrada
README.md
Comando CLI universal
npx tokrepo install 33ce2be6-b272-4e1a-94f3-0ea396a3bb12
Introducción

Docker Agent packages agent workloads into containers so you get reproducible environments, clear boundaries, and safer runs than ad-hoc local scripts.

  • Best for: Teams who want agent runs to be reproducible and portable across dev machines and CI
  • Works with: Docker + CI pipelines; pair with minimal images and read-only mounts
  • Setup time: 20 minutes

Practical Notes

  • Setup time ~20 minutes (clone + build + run the minimal example)
  • Reproducibility check: two runs produce matching artifacts and logs for the same inputs
  • GitHub stars + forks (verified): see Source & Thanks

If you want agent runs to be shareable, you need a portable runtime. Containers are the easiest path: pin dependencies, make inputs explicit, and store artifacts. Once it runs in Docker, you can scale it up to Kubernetes or any CI runner.

FAQ

Q: Why containers for agents? A: They make dependencies explicit and reduce ‘works on my machine’ failures.

Q: What’s the first safety win? A: Use read-only mounts and short-lived tokens inside the container.

Q: How do I keep images small? A: Start from minimal bases and pin versions; remove build tooling from runtime images.

🙏

Fuente y agradecimientos

Source: https://github.com/docker/docker-agent > License: Apache-2.0 > GitHub stars: 2,906 · forks: 357

Discusión

Inicia sesión para unirte a la discusión.
Aún no hay comentarios. Sé el primero en compartir tus ideas.

Activos relacionados