summaryrefslogtreecommitdiff
path: root/docs/podman-logs.1.md
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2019-03-20 09:01:07 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2019-03-20 17:25:08 -0400
commit6c812c34725edd4f3e66c0cd0ba3216606e45417 (patch)
treea1d9ea20f484f466db535e5745039569cf61c839 /docs/podman-logs.1.md
parent98c64356d1e7bf731d1f55c695ebd62564d432f3 (diff)
downloadpodman-6c812c34725edd4f3e66c0cd0ba3216606e45417.tar.gz
podman-6c812c34725edd4f3e66c0cd0ba3216606e45417.tar.bz2
podman-6c812c34725edd4f3e66c0cd0ba3216606e45417.zip
Fix man page to mention race condition
Also modify man page to talk about podman-container-logs as well as podman-logs. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'docs/podman-logs.1.md')
-rw-r--r--docs/podman-logs.1.md14
1 files changed, 10 insertions, 4 deletions
diff --git a/docs/podman-logs.1.md b/docs/podman-logs.1.md
index 8cd6ad5e7..ce5d890ce 100644
--- a/docs/podman-logs.1.md
+++ b/docs/podman-logs.1.md
@@ -1,9 +1,11 @@
-% podman-logs(1)
+% podman-container-logs(1)
## NAME
-podman\-logs - Fetch the logs of one or more containers
+podman\-container\-logs (podman\-logs) - Fetch the logs of one or more containers
## SYNOPSIS
+**podman** **container** **logs** [*options*] *container* [*container...*]
+
**podman** **logs** [*options*] *container* [*container...*]
## DESCRIPTION
@@ -15,7 +17,11 @@ any logs at the time you execute podman logs
**--follow, -f**
-Follow log output. Default is false
+Follow log output. Default is false.
+
+Note: If you are following a container which is removed `podman container rm`
+or removed on exit `podman run --rm ...`, then there is a chance the the log
+file will be removed before `podman logs` reads the final content.
**--latest, -l**
@@ -86,7 +92,7 @@ podman logs --since 10m myserver
```
## SEE ALSO
-podman(1)
+podman(1), podman-run(1), podman-container-rm(1)
## HISTORY
February 2018, Updated by Brent Baude <bbaude@redhat.com>