get_docker_login_command
Generate Docker CLI login commands for Vultr container registries using registry names or IDs, with configurable access permissions and expiration settings.
Instructions
Generate Docker login command for easy CLI access.
Smart identifier resolution: Use registry name or ID.
Args: registry_identifier: Registry name or ID expiry_seconds: Expiration time in seconds (optional, default: no expiry) read_write: Whether to grant read-write access (default: True, False for read-only)
Returns: Docker login command and credentials information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expiry_seconds | No | ||
read_write | No | ||
registry_identifier | Yes |
Input Schema (JSON Schema)
{
"properties": {
"expiry_seconds": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Expiry Seconds"
},
"read_write": {
"default": true,
"title": "Read Write",
"type": "boolean"
},
"registry_identifier": {
"title": "Registry Identifier",
"type": "string"
}
},
"required": [
"registry_identifier"
],
"type": "object"
}