
podman-ps
List of commands for podman-ps:
-
podman-ps:tldr:337be podman-ps: List currently running podman containers.$ podman pstry on your machineexplain 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 machineexplain this command
-
podman-ps:tldr:5d9bc podman-ps: Show the latest created container (includes all states).$ podman ps --latesttry on your machineexplain 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 machineexplain this command
-
podman-ps:tldr:8a172 podman-ps: List all podman containers (running and stopped).$ podman ps --alltry on your machineexplain 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 machineexplain 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 machineexplain this command
-
podman-ps:tldr:d7464 podman-ps: Filter containers by exit status code.$ podman ps --all --filter="exited=${code}"try on your machineexplain this command