c

cortex-plugin-docker

ESM
v1.0.0MIT

Official CortexPrism plugin

0.00CortexPrism
cloudcortex-plugindevelopmentdevopsesminfrastructure

Install Command

$ cortex plugin install marketplace:cortexprism.io/plugins/cortex-plugin-docker
Website RepositoryLicense: MITEntry: mod.ts

Configuration

Plugin Type
ESM
Entry Point
mod.ts
License
MIT

Capabilities

toolsshell:runfs:read

Tags

cloudcortex-plugindevelopmentdevopsesminfrastructure

Statistics

Downloads
0
Rating
0.0
/ 5.0
Version
v1.0.0
Published
June 15, 2026

Reviews (0)

No reviews yet. Be the first to rate this plugin!

README

cortex-plugin-docker

Manage containers and clusters with Docker and Kubernetes.

Installation

cortex plugin install marketplace:cortex-plugin-docker
cortex plugin install github:CortexPrism/cortex-plugin-docker
cortex plugin install ./manifest.json

Quick Start

cortex tools list
cortex chat --plugin cortex-plugin-docker

Tools

docker_list — List containers

  • all (boolean, default false) — Show all containers
  • filter (string, optional) — running, stopped, all

docker_run — Run a container

  • image (string, required) — Docker image
  • name (string, optional) — Container name
  • ports (string, optional) — Port mapping
  • env_vars (string, optional) — Env vars as JSON
  • command (string, optional) — Override command
  • detach (boolean) — Run in background

docker_logs — Get container logs

  • container_id (string, required)
  • tail (number, 100)
  • follow (boolean)

docker_stop — Stop container

  • container_id (string, required)
  • force (boolean)

k8s_get_pods — Get Kubernetes pods

  • namespace (string, default)
  • label_selector (string)

k8s_describe — Describe K8s resource

  • resource_type (enum: pod/deployment/service/node)
  • name (string, required)
  • namespace (string)

Configuration

{
  "plugins": {
    "cortex-plugin-docker": {
      "enabled": true,
      "config": {
        "dockerHost": "unix:///var/run/docker.sock",
        "kubeconfigPath": "~/.kube/config",
        "defaultNamespace": "default"
      }
    }
  }
}

Development

deno task test
deno task lint
deno task validate

License

MIT

Published June 15, 2026 · Updated June 15, 2026