Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

docker logs

docker logs [OPTIONS] CONTAINER
//EXAMPLE:
docker logs -f <container_id/container_name>

Name, shorthand	Default	Description
--details		Show extra details provided to logs
--follow , -f		Follow log output
--since		Show logs since timestamp (e.g. 2013-01-02T13:23:37Z) or relative (e.g. 42m for 42 minutes)
--tail , -n	all	Number of lines to show from the end of the logs
--timestamps , -t		Show timestamps
--until		Show logs before a timestamp (e.g. 2013-01-02T13:23:37Z) or relative (e.g. 42m for 42 minutes)
Source by docs.docker.com #
 
PREVIOUS NEXT
Tagged: #docker #logs
ADD COMMENT
Topic
Name
4+8 =