docker_info
Retrieve Docker system information, version details, container statistics, or disk usage data to monitor and manage Docker environments.
Instructions
Get Docker system information and statistics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
type | Yes | Type of information to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"type": {
"description": "Type of information to retrieve",
"enum": [
"info",
"version",
"stats",
"disk_usage"
],
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}