diff --git a/pages/common/podman-ps.md b/pages/common/podman-ps.md index d77dbaa5ea..01ac8cc31c 100644 --- a/pages/common/podman-ps.md +++ b/pages/common/podman-ps.md @@ -17,7 +17,7 @@ - Filter containers that contain a substring in their name: -`podman ps --filter="name={{name}}"` +`podman ps --filter "name={{name}}"` - Filter containers that share a given image as an ancestor: @@ -25,12 +25,12 @@ - Filter containers by exit status code: -`podman ps --all --filter="exited={{code}}"` +`podman ps --all --filter "exited={{code}}"` - Filter containers by status (created, running, removing, paused, exited and dead): -`podman ps --filter="status={{status}}"` +`podman ps --filter "status={{status}}"` - 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}}"` +`podman ps --filter "volume={{path/to/directory}}" --format "table {{.ID}}\t{{.Image}}\t{{.Names}}\t{{.Mounts}}"`