Forrest logo
back to the podman tool

podman-ps:tldr:d7464

podman-ps: Filter containers by exit status code.
$ podman ps --all --filter="exited=${code}"
try on your machine

The command "podman ps --all --filter="exited=${code}" is used to list all containers (both running and stopped) and filter them based on the exit code.

Here is a breakdown of the command:

  • "podman ps" is the main command that lists the containers.
  • "--all" flag is used to include all containers, including the stopped ones. By default, only running containers are shown.
  • "--filter" flag is used to specify a filter for the containers.
  • "exited=${code}" is the filter condition where ${code} is a placeholder for a specific exit code value. This means only containers that have exited with the specified exit code will be shown.

By using this command with the appropriate exit code value in place of ${code}, you can find containers that have exited with a specific code for troubleshooting or analysis purposes.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the podman tool