Add option for pod logs to display different colors per container.

Signed-off-by: Krzysztof Baran <krysbaran@gmail.com>
Signed-off-by: gcalin <caling@protonmail.com>
This commit is contained in:
gcalin
2022-03-04 19:04:58 +01:00
parent 0eff4b70d0
commit c185d8c0d6
13 changed files with 86 additions and 10 deletions

View File

@ -15,6 +15,10 @@ any logs at the time you execute podman logs).
## OPTIONS
#### **--color**
Output the containers with different colors in the log.
#### **--follow**, **-f**
Follow log output. Default is false.

View File

@ -13,6 +13,10 @@ Note: Long running command of `podman pod log` with a `-f` or `--follow` needs t
## OPTIONS
#### **--color**
Output the containers with different colors in the log.
#### **--container**, **-c**
By default `podman pod logs` retrieves logs for all the containers available within the pod differentiate by field `container`. However there are use-cases where user would want to limit the log stream only to a particular container of a pod for such cases `-c` can be used like `podman pod logs -c ctrNameorID podname`.