Skip to content

Docker Images

Images shows image records from the selected running Colima Docker context.

  • Repository.
  • Tag.
  • Image ID.
  • Digest.
  • Size.
  • Created time.
  • Docker version and context.

Images appear when they exist in the selected Docker context. Pulling, building, or running a container can create image records:

Terminal window
docker pull nginx:alpine

For named profiles:

Terminal window
docker --context colima-<profile> pull nginx:alpine

Then click Refresh.

The view is read-only in the current source. Pull, remove, tag, inspect, and prune actions are not implemented in the app UI.

  • Image tooling unavailable: Colima or Docker tooling is missing.
  • No profile selected: select a profile first.
  • Docker image store unavailable: Docker is not reachable for the selected profile.
  • No images: the selected context has no images returned by Docker.
  • No matching images: local search filtered the list.

ColimaStack invokes:

Terminal window
docker --context <context> images --digests --no-trunc --format "{{json .}}"

See Command API for exact command behavior and Diagnostics for missing tools or context failures.