Is there any way I can see the log of a container that has exited?
I can get the container id of the exited container using docker ps -a but I want to k
docker ps -a
docker logs --tail=50 for the last fifty lines - useful when your container has been running for a long time.
docker logs --tail=50