2025-03-14 21:59:59 -06:00
|
|
|
# docker logs
|
|
|
|
|
|
|
|
|
|
> Print container logs.
|
|
|
|
|
> More information: <https://docs.docker.com/reference/cli/docker/container/logs/>.
|
|
|
|
|
|
|
|
|
|
- Print logs from a container:
|
|
|
|
|
|
|
|
|
|
`docker logs {{container_name}}`
|
|
|
|
|
|
|
|
|
|
- Print logs and follow them:
|
|
|
|
|
|
2025-04-03 20:36:56 -06:00
|
|
|
`docker logs {{[-f|--follow]}} {{container_name}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Print last 5 lines:
|
|
|
|
|
|
2025-04-03 20:36:56 -06:00
|
|
|
`docker logs {{container_name}} {{[-n|--tail]}} {{5}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Print logs and append them with timestamps:
|
|
|
|
|
|
2025-04-03 20:36:56 -06:00
|
|
|
`docker logs {{[-t|--timestamps]}} {{container_name}}`
|
2025-03-14 21:59:59 -06: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}}`
|