Forrest logo
back to context overview

podman-ps

List of commands for podman-ps:

  • podman-ps:tldr:337be podman-ps: List currently running podman containers.
    $ podman ps
    try on your machine
    explain this command
  • podman-ps:tldr:4ca3a podman-ps: Filter containers by status (created, running, removing, paused, exited and dead).
    $ podman ps --filter="status=${status}"
    try on your machine
    explain this command
  • podman-ps:tldr:5d9bc podman-ps: Show the latest created container (includes all states).
    $ podman ps --latest
    try on your machine
    explain this command
  • podman-ps:tldr:84012 podman-ps: Filter containers that share a given image as an ancestor.
    $ podman ps --filter "ancestor=${image}:${tag}"
    try on your machine
    explain this command
  • podman-ps:tldr:8a172 podman-ps: List all podman containers (running and stopped).
    $ podman ps --all
    try on your machine
    explain this command
  • podman-ps:tldr:cc17e podman-ps: Filter containers that mount a specific volume or have a volume mounted in a specific path.
    $ podman ps --filter="volume=${path-to-directory}" --format "table ${-ID}\t${-Image}\t${-Names}\t${-Mounts}"
    try on your machine
    explain this command
  • podman-ps:tldr:d144c podman-ps: Filter containers that contain a substring in their name.
    $ podman ps --filter="name=${name}"
    try on your machine
    explain this command
  • podman-ps:tldr:d7464 podman-ps: Filter containers by exit status code.
    $ podman ps --all --filter="exited=${code}"
    try on your machine
    explain this command
back to context overview