Files
tldr/pages.tr/common/docker-logs.md
2024-09-25 07:39:51 +02:00

25 lines
613 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# docker logs
> Konteyner kaydını yazdırır.
> Daha fazla bilgi için: <https://docs.docker.com/reference/cli/docker/container/logs/>.
- Bir konteyner içindeki kayıtları yazdır:
`docker logs {{konteyner_ismi}}`
- Kayıtları yazdır ve izle:
`docker logs -f {{konteyner_ismi}}`
- Son 5 kaydı yazdır:
`docker logs {{konteyner_ismi}} --tail {{5}}`
- Kayıtları yazdır ve zaman damgaları ile iliştir:
`docker logs -t {{konteyner_ismi}}`
- Belli bir konteyner çalışma zamanındaki (i.e. 23m, 10s, 2013-01-02T13:23:37) kayıtları yazdır:
`docker logs {{konteyner_ismi}} --until {{zaman}}`