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
id
integerThe unique identifier of the image repository.
url
stringThe URL of the image repository.
name
stringThe name of the image repository.
username
stringThe username for authenticating with the repository.
email
stringThe email address associated with the repository account.
created_at_iso
datetimeThe date and time the repository was added, in ISO 8601 format.
updated_at_iso
datetimeThe 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"
}