Overview
Fetch the list of Docker images available in a specified environment. Returns an empty array if no environment is specified or if the Docker daemon is unavailable.Endpoint
Query Parameters
Environment ID to list images from. Required to return any results.
Authentication
Requiresimages:view permission for the specified environment.
Response
Returns an array of image objects:Response Fields
Unique image identifier (SHA256 hash)
Repository tags associated with the image
Content-addressable digests
Unix timestamp when the image was created
Image size in bytes
Total size including shared layers
Number of containers using this image
Error Responses
Permission denied - user lacks
images:view permission or environment accessEnvironment not found
Implementation
Usage Examples
Fetch Images for Environment
Filter Images in UI
Related Operations
- Pull Image - Download images from registries
- Scan Image - Run vulnerability scans
- Push Image - Upload to registries
- Prune Images - Remove unused images
Notes
- Returns empty array on connection errors to prevent UI failures
- Requires valid environment ID to return results
- Enterprise users must have environment access permissions
- Images are fetched directly from Docker daemon via Docker API
