1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/docker-logs.md

25 lines
609 B
Markdown
Raw Normal View History

2019-12-15 11:47:28 +01:00
# docker logs
> Print container logs.
> More information: <https://docs.docker.com/reference/cli/docker/container/logs/>.
2019-12-15 11:47:28 +01:00
- Print logs from a container:
`docker logs {{container_name}}`
- Print logs and follow them:
`docker logs {{[-f|--follow]}} {{container_name}}`
2019-12-15 11:47:28 +01:00
- Print last 5 lines:
`docker logs {{container_name}} {{[-n|--tail]}} {{5}}`
2019-12-15 11:47:28 +01:00
- Print logs and append them with timestamps:
`docker logs {{[-t|--timestamps]}} {{container_name}}`
2019-12-15 11:47:28 +01:00
- 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}}`