2016-10-14 18:30:36 -04:00
|
|
|
---
|
|
|
|
title: "logs"
|
|
|
|
description: "The logs command description and usage"
|
2016-11-03 18:48:30 -04:00
|
|
|
keywords: "logs, retrieve, docker"
|
2016-10-14 18:30:36 -04:00
|
|
|
---
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2017-10-04 13:03:55 -04:00
|
|
|
<!-- This file is maintained within the docker/cli GitHub
|
2017-07-28 13:28:23 -04:00
|
|
|
repository at https://github.com/docker/cli/. Make all
|
2016-10-19 13:25:45 -04:00
|
|
|
pull requests against that repo. If you see this file in
|
|
|
|
another repository, consider it read-only there, as it will
|
|
|
|
periodically be overwritten by the definitive file. Pull
|
|
|
|
requests which include edits to this file in other repositories
|
|
|
|
will be rejected.
|
|
|
|
-->
|
|
|
|
|
2015-06-21 16:41:38 -04:00
|
|
|
# logs
|
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
```markdown
|
|
|
|
Usage: docker logs [OPTIONS] CONTAINER
|
|
|
|
|
|
|
|
Fetch the logs of a container
|
|
|
|
|
|
|
|
Options:
|
|
|
|
--details Show extra details provided to logs
|
|
|
|
-f, --follow Follow log output
|
|
|
|
--help Print usage
|
2016-12-24 23:13:53 -05:00
|
|
|
--since string Show logs since timestamp (e.g. 2013-01-02T13:23:37) or relative (e.g. 42m for 42 minutes)
|
2017-11-14 10:43:35 -05:00
|
|
|
--until string Show logs before timestamp (e.g. 2013-01-02T13:23:37) or relative (e.g. 42m for 42 minutes)
|
2017-02-07 18:42:48 -05:00
|
|
|
--tail string Number of lines to show from the end of the logs (default "all")
|
2016-07-07 14:43:18 -04:00
|
|
|
-t, --timestamps Show timestamps
|
|
|
|
```
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
## Description
|
|
|
|
|
2015-06-21 16:41:38 -04:00
|
|
|
The `docker logs` command batch-retrieves logs present at the time of execution.
|
|
|
|
|
2016-09-16 09:29:28 -04:00
|
|
|
> **Note**: this command is only functional for containers that are started with
|
|
|
|
> the `json-file` or `journald` logging driver.
|
|
|
|
|
2016-12-04 07:41:57 -05:00
|
|
|
For more information about selecting and configuring logging drivers, refer to
|
Developer Certificate of Origin
Version 1.1
Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
1 Letterman Drive
Suite D4700
San Francisco, CA, 94129
Everyone is permitted to copy and distribute verbatim copies of this
license document, but changing it is not allowed.
Developer's Certificate of Origin 1.1
By making a contribution to this project, I certify that:
(a) The contribution was created in whole or in part by me and I
have the right to submit it under the open source license
indicated in the file; or
(b) The contribution is based upon previous work that, to the best
of my knowledge, is covered under an appropriate open source
license and I have the right under that license to submit that
work with modifications, whether created in whole or in part
by me, under the same open source license (unless I am
permitted to submit under a different license), as indicated
in the file; or
(c) The contribution was provided directly to me by some other
person who certified (a), (b) or (c) and I have not modified
it.
(d) I understand and agree that this project and the contribution
are public and that a record of the contribution (including all
personal information I submit with it, including my sign-off) is
maintained indefinitely and may be redistributed consistent with
this project or the open source license(s) involved.
Signed-off-by: nkwangleiGIT <nkwanglei@126.com>
2018-05-16 08:16:08 -04:00
|
|
|
[Configure logging drivers](https://docs.docker.com/config/containers/logging/configure/).
|
2016-09-16 09:29:28 -04:00
|
|
|
|
2015-06-21 16:41:38 -04:00
|
|
|
The `docker logs --follow` command will continue streaming the new output from
|
|
|
|
the container's `STDOUT` and `STDERR`.
|
|
|
|
|
|
|
|
Passing a negative number or a non-integer to `--tail` is invalid and the
|
2015-07-03 09:50:06 -04:00
|
|
|
value is set to `all` in that case.
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2015-10-29 13:51:36 -04:00
|
|
|
The `docker logs --timestamps` command will add an [RFC3339Nano timestamp](https://golang.org/pkg/time/#pkg-constants)
|
2015-09-19 16:54:22 -04:00
|
|
|
, for example `2014-09-16T06:17:46.000000000Z`, to each
|
2015-10-29 13:51:36 -04:00
|
|
|
log entry. To ensure that the timestamps are aligned the
|
2015-06-21 16:41:38 -04:00
|
|
|
nano-second part of the timestamp will be padded with zero when necessary.
|
|
|
|
|
2016-04-08 12:15:08 -04:00
|
|
|
The `docker logs --details` command will add on extra attributes, such as
|
|
|
|
environment variables and labels, provided to `--log-opt` when creating the
|
|
|
|
container.
|
|
|
|
|
2015-06-21 16:41:38 -04:00
|
|
|
The `--since` option shows only the container logs generated after
|
|
|
|
a given date. You can specify the date as an RFC 3339 date, a UNIX
|
2015-10-29 13:51:36 -04:00
|
|
|
timestamp, or a Go duration string (e.g. `1m30s`, `3h`). Besides RFC3339 date
|
|
|
|
format you may also use RFC3339Nano, `2006-01-02T15:04:05`,
|
|
|
|
`2006-01-02T15:04:05.999999999`, `2006-01-02Z07:00`, and `2006-01-02`. The local
|
|
|
|
timezone on the client will be used if you do not provide either a `Z` or a
|
|
|
|
`+-00:00` timezone offset at the end of the timestamp. When providing Unix
|
|
|
|
timestamps enter seconds[.nanoseconds], where seconds is the number of seconds
|
|
|
|
that have elapsed since January 1, 1970 (midnight UTC/GMT), not counting leap
|
|
|
|
seconds (aka Unix epoch or Unix time), and the optional .nanoseconds field is a
|
|
|
|
fraction of a second no more than nine digits long. You can combine the
|
|
|
|
`--since` option with either or both of the `--follow` or `--tail` options.
|
2017-11-14 10:43:35 -05:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
### Retrieve logs until a specific point in time
|
|
|
|
|
|
|
|
In order to retrieve logs before a specific point in time, run:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker run --name test -d busybox sh -c "while true; do $(echo date); sleep 1; done"
|
|
|
|
$ date
|
|
|
|
Tue 14 Nov 2017 16:40:00 CET
|
|
|
|
$ docker logs -f --until=2s
|
|
|
|
Tue 14 Nov 2017 16:40:00 CET
|
|
|
|
Tue 14 Nov 2017 16:40:01 CET
|
|
|
|
Tue 14 Nov 2017 16:40:02 CET
|
|
|
|
```
|