docker_volumes
Perform actions on Docker volumes, including listing, creating, removing, inspecting, and pruning, using specified drivers, filters, and force options.
Instructions
Manage Docker volumes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Action to perform on volumes | |
driver | No | Volume driver | |
filter | No | Filter results | |
force | No | Force operation | |
volume | No | Volume name |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Action to perform on volumes",
"enum": [
"list",
"create",
"remove",
"inspect",
"prune"
],
"type": "string"
},
"driver": {
"description": "Volume driver",
"type": "string"
},
"filter": {
"description": "Filter results",
"type": "string"
},
"force": {
"description": "Force operation",
"type": "boolean"
},
"volume": {
"description": "Volume name",
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}