mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
813 B
Plaintext
30 lines
813 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# docker container logs
|
|
|
|
> Print container logs.
|
|
> More information: <https://docs.docker.com/reference/cli/docker/container/logs/>.
|
|
|
|
- Print logs from a container:
|
|
|
|
`docker {{[logs|container logs]}} {{container_name}}`
|
|
|
|
- Print logs and follow them:
|
|
|
|
`docker {{[logs|container logs]}} {{[-f|--follow]}} {{container_name}}`
|
|
|
|
- Print last 5 lines:
|
|
|
|
`docker {{[logs|container logs]}} {{container_name}} {{[-n|--tail]}} 5`
|
|
|
|
- Print logs and append them with timestamps:
|
|
|
|
`docker {{[logs|container logs]}} {{[-t|--timestamps]}} {{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 logs]}} {{container_name}} --until {{time}}`
|