curl --request GET \
--url http://localhost:8000/docker/available-images \
--header 'Authorization: Basic <encoded-value>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Get available Docker images matching the specified name.
Args: image_name: Name pattern to search for in image tags docker_service: Docker service dependency
Returns: Dictionary with list of available image tags
curl --request GET \
--url http://localhost:8000/docker/available-images \
--header 'Authorization: Basic <encoded-value>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Was this page helpful?