The docker logs command allows you to read the output from STDOUT and STDERR of a a container as a batch. You can add a -f or --follow flag to stream the output from the container in real time.
docker logs [options] container_id
Example
The following example uses docker logs to retrieve the output of the container created with hello-worldimage.
docker create hello-world# 319297ab159e46b41a1cd580e2c02f05e40ca43f76b3fb679e478d7a6ae16c57docker start 319297ab159e46b41a1cd580e2c02f05e40ca43f76b3fb679e478d7a6ae16c57# 319297ab159e46b41a1cd580e2c02f05e40ca43f76b3fb679e478d7a6ae16c57docker logs 319297ab159e46b41a1cd580e2c02f05e40ca43f76b3fb679e478d7a6ae16c57# Hello from Docker!# This message shows that your installation appears to be working correctly.