docker-logs - Man Page
Fetch the logs of a container
Examples (TL;DR)
- Print logs from a container:
docker logs container_name
- Print logs and follow them:
docker logs -f container_name
- Print last 5 lines:
docker logs container_name --tail 5
- Print logs and append them with timestamps:
docker logs -t container_name
- Print logs from a certain point in time of container execution (i.e. 23m, 10s, 2013-01-02T13:23:37):
docker logs container_name --until time
Synopsis
docker logs [Options] CONTAINER
Description
Alias for docker container logs.
Options
--details[=false] Show extra details provided to logs
-f, --follow[=false] Follow log output
-h, --help[=false] help for logs
--since="" Show logs since timestamp (e.g. "2013-01-02T13:23:37Z") or relative (e.g. "42m" for 42 minutes)
-n, --tail="all" Number of lines to show from the end of the logs
-t, --timestamps[=false] Show timestamps
--until="" Show logs before a timestamp (e.g. "2013-01-02T13:23:37Z") or relative (e.g. "42m" for 42 minutes)
See Also
Info
Dec 2024 Docker Community Docker User Manuals