list_docker_containers
Retrieve and display Docker container details on remote servers using hostname and credentials. Options include showing all containers and setting timeout limits for inspection.
Instructions
列出Docker容器及其信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hostname | Yes | ||
password | No | ||
port | No | ||
show_all | No | ||
timeout | No | ||
username | Yes |
Input Schema (JSON Schema)
{
"properties": {
"hostname": {
"title": "Hostname",
"type": "string"
},
"password": {
"default": "",
"title": "Password",
"type": "string"
},
"port": {
"default": 22,
"title": "Port",
"type": "integer"
},
"show_all": {
"default": false,
"title": "Show All",
"type": "boolean"
},
"timeout": {
"default": 30,
"title": "Timeout",
"type": "integer"
},
"username": {
"title": "Username",
"type": "string"
}
},
"required": [
"hostname",
"username"
],
"title": "list_docker_containersArguments",
"type": "object"
}