diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-02-19 19:48:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-19 19:48:05 +0100 |
commit | 82ae36c15726a4adb3242938ed2396be30bd479a (patch) | |
tree | c083d8e599ac24abb298597de8dd7c0ee41e54d8 /docs/podman-logs.1.md | |
parent | 10ffa3ff82ff28e7761c23cda5a5c16d83e0d0ce (diff) | |
parent | 675a202a1b560fdc08a489b37e6765a2b8cc4dd0 (diff) | |
download | podman-82ae36c15726a4adb3242938ed2396be30bd479a.tar.gz podman-82ae36c15726a4adb3242938ed2396be30bd479a.tar.bz2 podman-82ae36c15726a4adb3242938ed2396be30bd479a.zip |
Merge pull request #2363 from TomSweeneyRedHat/dev/tsweeney/cobraex5
Fifth chunk of Cobra Examples
Diffstat (limited to 'docs/podman-logs.1.md')
-rw-r--r-- | docs/podman-logs.1.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/podman-logs.1.md b/docs/podman-logs.1.md index 71a798bc0..6b37aed9e 100644 --- a/docs/podman-logs.1.md +++ b/docs/podman-logs.1.md @@ -61,7 +61,7 @@ podman logs --tail 2 b3f2436bdb97 To view a containers logs since a certain time: ``` -podman logs 224c375f27cd --since 2017-08-07T10:10:09.055837383-04:00 myserver +podman logs --since 2017-08-07T10:10:09.055837383-04:00 myserver 1:M 07 Aug 14:10:09.055 # Server can't set maximum open files to 10032 because of OS error: Operation not permitted. 1:M 07 Aug 14:10:09.055 # Current maximum open files is 4096. maxclients has been reduced to 4064 to compensate for low ulimit. If you need higher maxclients increase 'ulimit -n'. @@ -72,7 +72,7 @@ podman logs 224c375f27cd --since 2017-08-07T10:10:09.055837383-04:00 myserver To view a container's logs generated in the last 10 minutes: ``` -podman logs 224c375f27cd --since 10m myserver +podman logs --since 10m myserver 1:M 07 Aug 14:10:09.055 # Server can't set maximum open files to 10032 because of OS error: Operation not permitted. 1:M 07 Aug 14:10:09.055 # Current maximum open files is 4096. maxclients has been reduced to 4064 to compensate for low ulimit. If you need higher maxclients increase 'ulimit -n'. |