list_docker_volumes
Retrieve and list Docker volumes on a remote server by specifying hostname, username, and optional parameters for port, password, and timeout.
Instructions
列出Docker卷
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hostname | Yes | ||
password | No | ||
port | 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"
},
"timeout": {
"default": 30,
"title": "Timeout",
"type": "integer"
},
"username": {
"title": "Username",
"type": "string"
}
},
"required": [
"hostname",
"username"
],
"title": "list_docker_volumesArguments",
"type": "object"
}