Skip to content

Docker Containers

Containers shows Docker containers for the selected running Colima profile.

ColimaStack Containers screenshot

  • Container name or ID.
  • Image.
  • Published ports.
  • State and status.
  • Running container count.
  • Docker context, socket, profile state, and VM address.

Running containers are highlighted as healthy. dead containers create a backend warning. Stopped, paused, exited, or restarting containers can still appear because the app lists all containers.

  1. Select a Docker-backed Colima profile.
  2. Start it with Start.
  3. Run or create containers in that Docker context.
  4. Click Refresh.

Quick Start sample:

Terminal window
docker run -d --name colimastack-quickstart -p 8080:80 nginx:alpine

If you are using a named profile, use the matching context:

Terminal window
docker --context colima-<profile> ps --all

The view is read-only in the current source. It does not start, stop, restart, remove, inspect, or show logs for individual containers.

Related menu bar actions can open a published port in the browser, open Containers, copy container ID, copy image, and copy ports.

  • Runtime not available: Colima diagnostics are not available.
  • Choose a profile: no profile is selected.
  • Docker endpoint unavailable: Docker CLI or the selected context is unavailable.
  • No containers: Docker is available, but the selected context has no containers.
  • No matching containers: the local search filter hides all rows.

ColimaStack invokes:

Terminal window
docker --context <context> ps --all --no-trunc --format "{{json .}}"

See Command API for context and error behavior. Use Diagnostics if Docker is unavailable.