Image repositories represent Docker container registries where your Docker images are stored. These can be public or private registries that your stacks use to pull container images.
Model
idintegerThe unique identifier of the image repository.
urlstringThe URL of the image repository.
namestringThe name of the image repository.
usernamestringThe username for authenticating with the repository.
emailstringThe email address associated with the repository account.
created_at_isodatetimeThe date and time the repository was added, in ISO 8601 format.
updated_at_isodatetimeThe date and time the repository was last updated, in ISO 8601 format.
Example
{
"id": 234,
"url": "https://registry.hub.docker.com",
"name": "docker-hub-repo",
"username": "mycompany",
"email": "devops@example.com",
"created_at_iso": "2024-01-10T08:30:00Z",
"updated_at_iso": "2024-02-05T14:20:00Z"
}